@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --clr-header: #252536;
  --clr-bg: #212132;
  --clr-gold: #ddc43a;
  --clr-red: #cd1935;
  --clr-text: #e8e8f0;
  --clr-text-muted: #a0a0b8;
  --clr-card: #2a2a42;
  --clr-card-alt: #1e1e30;
  --clr-border: #3a3a55;
  --clr-gold-dark: #b8a020;
  --clr-red-dark: #a51228;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-btn: 0 2px 12px rgba(0,0,0,0.3);
  --transition: 0.22s ease;
  --font-main: 'Mulish', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--clr-bg); overflow-x: clip; max-width: 100%; }

body {
  font-family: var(--font-main);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100%;
}
#page, .site { overflow-x: clip; max-width: 100vw; }

img { max-width: 100%; display: block; }
a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.4em; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; color: #fff; }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
p { margin-bottom: 1rem; color: var(--clr-text); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.x7k2-wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.x7k2-wrap--wide { max-width: 1380px; margin: 0 auto; padding: 0 20px; }

.q9r3-section { padding: 56px 0; }
.q9r3-section + .q9r3-section { border-top: 1px solid var(--clr-border); }

.p4n1-title { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 800; color: #fff; margin-bottom: 1.4rem; position: relative; padding-bottom: 0.7rem; }
.p4n1-title::after { content: ''; display: block; width: 52px; height: 3px; background: var(--clr-gold); border-radius: 2px; margin-top: 0.5rem; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 22px; border-radius: var(--radius-sm); font-family: var(--font-main);
  font-size: 0.9rem; font-weight: 700; cursor: pointer; border: none;
  text-decoration: none; transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-btn); white-space: nowrap; letter-spacing: 0.02em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.45); }
.btn:active { transform: translateY(0); }
.btn--gold { background: var(--clr-gold); color: #18181f; }
.btn--gold:hover { background: #edd84a; color: #18181f; }
.btn--red { background: var(--clr-red); color: #fff; }
.btn--red:hover { background: #e0203e; color: #fff; }
.btn--outline { background: transparent; border: 2px solid var(--clr-gold); color: var(--clr-gold); }
.btn--outline:hover { background: var(--clr-gold); color: #18181f; }
.btn--lg { padding: 14px 32px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 16px; font-size: 0.82rem; }
.btn--full { width: 100%; }

/* ========== HEADER ========== */
.z3f8-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--clr-header);
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
  border-bottom: 2px solid rgba(221,196,58,0.18);
}
.z3f8-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 68px; max-width: 1180px; margin: 0 auto; gap: 12px;
}
.z3f8-header__logo { flex-shrink: 0; }
.z3f8-header__logo img { height: 42px; width: auto; object-fit: contain; }
.z3f8-header__nav { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.z3f8-header__nav a {
  color: var(--clr-text-muted); font-size: 0.88rem; font-weight: 600;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition); text-decoration: none;
}
.z3f8-header__nav a:hover { color: var(--clr-gold); background: rgba(221,196,58,0.08); }
.z3f8-header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.z3f8-header__online {
  display: flex; align-items: center; gap: 6px; font-size: 0.8rem;
  color: var(--clr-text-muted); padding: 5px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.05); flex-shrink: 0;
}
.z3f8-header__online-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #2ecc71;
  animation: blink-dot 1.5s infinite;
}
@keyframes blink-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

.z3f8-burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px; z-index: 1100;
}
.z3f8-burger span { display: block; width: 26px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.z3f8-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.z3f8-burger.is-open span:nth-child(2) { opacity: 0; }
.z3f8-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.z3f8-mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--clr-header); z-index: 990; flex-direction: column;
  padding: 24px 20px; gap: 8px; overflow-y: auto;
}
.z3f8-mobile-nav.is-open { display: flex; animation: slide-down 0.22s ease; }
@keyframes slide-down { from{opacity:0;transform:translateY(-12px)} to{opacity:1;transform:translateY(0)} }
.z3f8-mobile-nav a {
  color: var(--clr-text); font-size: 1.05rem; font-weight: 600;
  padding: 12px 16px; border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--clr-border); text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.z3f8-mobile-nav a:hover { color: var(--clr-gold); background: rgba(221,196,58,0.08); }
.z3f8-mobile-nav .btn { margin-top: 8px; }

/* ========== HERO SLIDER ========== */
.m8p5-hero { position: relative; overflow: hidden; background: var(--clr-header); }
.m8p5-slider { position: relative; width: 100%; }
.m8p5-slide {
  display: none; position: relative; min-height: 460px;
  align-items: center; justify-content: flex-start;
  background-size: cover; background-position: center;
}
.m8p5-slide.is-active { display: flex; animation: fade-in 0.5s ease; }
@keyframes fade-in { from{opacity:0} to{opacity:1} }
.m8p5-slide__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(33,33,50,0.92) 40%, rgba(33,33,50,0.3) 100%);
}
.m8p5-slide__content {
  position: relative; z-index: 2; max-width: 540px;
  padding: 48px 32px 48px 48px;
}
.m8p5-slide__badge {
  display: inline-block; background: var(--clr-red); color: #fff;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; text-transform: uppercase;
}
.m8p5-slide__title { font-size: clamp(1.5rem, 4vw, 2.6rem); font-weight: 900; color: #fff; margin-bottom: 10px; text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.m8p5-slide__sub { font-size: 1.05rem; color: var(--clr-text-muted); margin-bottom: 24px; }
.m8p5-slider__arrows { position: absolute; bottom: 20px; right: 32px; display: flex; gap: 8px; z-index: 10; }
.m8p5-arrow {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); font-size: 1.1rem;
}
.m8p5-arrow:hover { background: var(--clr-gold); color: #18181f; }
.m8p5-dots { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.m8p5-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: background var(--transition), transform var(--transition);
}
.m8p5-dot.is-active { background: var(--clr-gold); transform: scale(1.3); }

/* ========== BREADCRUMBS ========== */
.b6x2-breadcrumbs {
  background: var(--clr-card-alt); border-bottom: 1px solid var(--clr-border);
  padding: 12px 0;
}
.b6x2-breadcrumbs__list { display: flex; align-items: center; flex-wrap: wrap; gap: 4px; list-style: none; padding: 0; margin: 0; font-size: 0.85rem; }
.b6x2-breadcrumbs__item { display: flex; align-items: center; gap: 4px; color: var(--clr-text-muted); }
.b6x2-breadcrumbs__item a { color: var(--clr-text-muted); text-decoration: none; transition: color var(--transition); }
.b6x2-breadcrumbs__item a:hover { color: var(--clr-gold); }
.b6x2-breadcrumbs__sep { color: var(--clr-border); }

/* ========== TABLE OF CONTENTS ========== */
.t5m9-toc {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 32px;
}
.t5m9-toc__title { font-size: 1rem; font-weight: 800; color: var(--clr-gold); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.t5m9-toc__list { list-style: none; padding: 0; margin: 0; columns: 2; gap: 0; }
.t5m9-toc__list li { break-inside: avoid; }
.t5m9-toc__list a {
  display: flex; align-items: center; gap: 8px; padding: 6px 0;
  color: var(--clr-text-muted); font-size: 0.9rem; font-weight: 600;
  border-bottom: 1px solid rgba(58,58,85,0.5); text-decoration: none;
  transition: color var(--transition);
}
.t5m9-toc__list a:hover { color: var(--clr-gold); }
.t5m9-toc__list a::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--clr-gold); flex-shrink: 0;
}

/* ========== TABLES ========== */
.r2j7-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-md); box-shadow: var(--shadow-card); }
.r2j7-table {
  width: 100%; min-width: 480px; border-collapse: collapse;
  background: var(--clr-card); font-size: 0.92rem;
}
.r2j7-table th, .r2j7-table td {
  padding: 13px 18px; text-align: left; border: 1px solid var(--clr-border);
}
.r2j7-table th { background: var(--clr-card-alt); color: var(--clr-gold); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.r2j7-table tr:nth-child(even) td { background: rgba(255,255,255,0.025); }
.r2j7-table tr:hover td { background: rgba(221,196,58,0.05); }
.r2j7-table td:first-child { color: var(--clr-text-muted); font-weight: 600; white-space: nowrap; width: 40%; }
.r2j7-table td:last-child { color: var(--clr-text); font-weight: 500; }
.r2j7-table .val--gold { color: var(--clr-gold); font-weight: 700; }
.r2j7-table .val--red { color: #ff4d6d; font-weight: 700; }
.r2j7-table .val--green { color: #2ecc71; font-weight: 700; }

/* ========== MIRRORS BLOCK ========== */
.k4v1-mirrors { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 28px; }
.k4v1-mirrors__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.k4v1-mirrors__live {
  display: flex; align-items: center; gap: 7px; background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.3); border-radius: 20px;
  padding: 5px 14px; font-size: 0.83rem; font-weight: 700; color: #2ecc71;
}
.k4v1-mirrors__time { font-size: 0.83rem; color: var(--clr-text-muted); }
.k4v1-mirror-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--clr-border); margin-bottom: 10px;
  background: var(--clr-card-alt); gap: 12px; flex-wrap: wrap;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.k4v1-mirror-row:hover { border-color: var(--clr-gold); box-shadow: 0 0 0 1px var(--clr-gold); }
.k4v1-mirror-row__url { font-size: 0.9rem; font-weight: 600; color: var(--clr-gold); word-break: break-all; }
.k4v1-mirror-row__status { display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: #2ecc71; font-weight: 600; }
.k4v1-mirror-row__status-dot { width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; }

/* ========== GAMES GRID ========== */
.g5w3-games__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.g5w3-game-card {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-card);
}
.g5w3-game-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); border-color: rgba(221,196,58,0.4); }
.g5w3-game-card__img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.g5w3-game-card__body { padding: 14px 16px; }
.g5w3-game-card__provider { font-size: 0.75rem; color: var(--clr-text-muted); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.g5w3-game-card__name { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.g5w3-games-slider-wrap { display: none; }

/* ========== SLOT MINIGAME ========== */
.s9c4-slot { background: var(--clr-card); border: 1px solid var(--clr-border); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; box-shadow: var(--shadow-card); }
.s9c4-slot__title { font-size: 1.3rem; font-weight: 800; color: var(--clr-gold); margin-bottom: 8px; }
.s9c4-slot__sub { color: var(--clr-text-muted); font-size: 0.92rem; margin-bottom: 28px; }
.s9c4-reels { display: flex; justify-content: center; gap: 12px; margin-bottom: 28px; }
.s9c4-reel {
  width: 80px; height: 100px; background: var(--clr-card-alt);
  border: 2px solid var(--clr-border); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; overflow: hidden; position: relative;
  box-shadow: inset 0 0 12px rgba(0,0,0,0.4);
  transition: border-color 0.3s;
}
.s9c4-reel.spinning { animation: reel-spin 0.15s steps(1) infinite; border-color: var(--clr-gold); }
@keyframes reel-spin { 0%{transform:translateY(0)} 25%{transform:translateY(-4px)} 75%{transform:translateY(4px)} 100%{transform:translateY(0)} }
.s9c4-slot__result { min-height: 60px; margin-bottom: 20px; }
.s9c4-slot__win { display: none; background: linear-gradient(135deg, rgba(221,196,58,0.15), rgba(221,196,58,0.05)); border: 1px solid var(--clr-gold); border-radius: var(--radius-md); padding: 16px 24px; }
.s9c4-slot__win-title { font-size: 1.3rem; font-weight: 900; color: var(--clr-gold); margin-bottom: 6px; }
.s9c4-slot__win-text { color: var(--clr-text); font-size: 0.95rem; margin-bottom: 14px; }
.s9c4-slot__lose { display: none; color: var(--clr-text-muted); font-size: 0.95rem; padding: 12px; }

/* ========== REVIEW CONTENT BLOCK ========== */
.c1h6-review {
  font-size: 0.97rem; line-height: 1.8; color: var(--clr-text);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  background: var(--clr-card);
  box-shadow: var(--shadow-card);
}
@media (max-width: 480px) { .c1h6-review { padding: 18px 16px; } }
.c1h6-review h1, .c1h6-review h2, .c1h6-review h3,
.c1h6-review h4, .c1h6-review h5, .c1h6-review h6 {
  color: #fff; margin-top: 1.8em; margin-bottom: 0.7em; font-weight: 700; line-height: 1.3;
}
.c1h6-review h2 { font-size: 1.45rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--clr-border); }
.c1h6-review h3 { font-size: 1.18rem; }
.c1h6-review p { margin-bottom: 1.1em; }
.c1h6-review ul, .c1h6-review ol { padding-left: 1.6em; margin-bottom: 1.1em; }
.c1h6-review li { margin-bottom: 0.5em; }
.c1h6-review a { color: var(--clr-gold); text-decoration: underline; }
.c1h6-review a:hover { color: #fff; }
.c1h6-review strong, .c1h6-review b { color: #fff; font-weight: 700; }
.c1h6-review em { color: var(--clr-gold); }
.c1h6-review blockquote {
  border-left: 3px solid var(--clr-gold); background: var(--clr-card);
  margin: 1.4em 0; padding: 14px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--clr-text-muted);
}
.c1h6-review table {
  width: 100%; border-collapse: collapse; margin-bottom: 1.4em;
  border: 1px solid var(--clr-border); border-radius: var(--radius-sm); overflow: hidden;
}
.c1h6-review th { background: var(--clr-card-alt); color: var(--clr-gold); padding: 10px 14px; text-align: left; font-size: 0.88rem; }
.c1h6-review td { padding: 10px 14px; border: 1px solid var(--clr-border); vertical-align: top; }
.c1h6-review tr:nth-child(even) td { background: rgba(255,255,255,0.025); }
.c1h6-review img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 12px 0; }
.c1h6-review hr { border: none; border-top: 1px solid var(--clr-border); margin: 1.6em 0; }
.c1h6-review code { background: var(--clr-card-alt); padding: 2px 7px; border-radius: 4px; font-size: 0.88em; color: var(--clr-gold); }
.c1h6-review pre { background: var(--clr-card-alt); padding: 16px; border-radius: var(--radius-sm); overflow-x: auto; margin-bottom: 1.2em; }
.c1h6-review pre code { background: none; padding: 0; }

/* ========== FAQ ========== */
.f7n2-faq { display: flex; flex-direction: column; gap: 12px; }
.f7n2-faq-item {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color var(--transition);
}
.f7n2-faq-item.is-open { border-color: rgba(221,196,58,0.35); }
.f7n2-faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; background: none; border: none; cursor: pointer;
  color: #fff; font-size: 1rem; font-weight: 700; font-family: var(--font-main);
  text-align: left; gap: 12px;
}
.f7n2-faq-item__q:hover { color: var(--clr-gold); }
.f7n2-faq-item__icon {
  width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--clr-border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1rem; color: var(--clr-gold); transition: transform var(--transition), border-color var(--transition);
}
.f7n2-faq-item.is-open .f7n2-faq-item__icon { transform: rotate(45deg); border-color: var(--clr-gold); }
.f7n2-faq-item__a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease; color: var(--clr-text-muted); font-size: 0.95rem; line-height: 1.7;
}
.f7n2-faq-item.is-open .f7n2-faq-item__a { max-height: 400px; padding-bottom: 18px; }

/* ========== AUTHOR ========== */
.a3k8-author {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-card);
}
.a3k8-author__avatar { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--clr-gold); }
.a3k8-author__info { flex: 1; }
.a3k8-author__label { font-size: 0.78rem; font-weight: 700; color: var(--clr-gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.a3k8-author__name { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.a3k8-author__bio { font-size: 0.92rem; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 14px; }
.a3k8-author__links { display: flex; gap: 10px; flex-wrap: wrap; }
.a3k8-author__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 700;
  background: rgba(221,196,58,0.1); border: 1px solid rgba(221,196,58,0.3);
  color: var(--clr-gold); text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.a3k8-author__link:hover { background: var(--clr-gold); color: #18181f; }

/* ========== FOOTER ========== */
.z9b4-footer {
  background: var(--clr-header);
  border-top: 2px solid rgba(221,196,58,0.18);
  padding: 48px 0 24px;
}
.z9b4-footer__grid { display: grid; grid-template-columns: 200px 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.z9b4-footer__brand {}
.z9b4-footer__logo { height: 38px; width: auto; margin-bottom: 16px; }
.z9b4-footer__tagline { font-size: 0.85rem; color: var(--clr-text-muted); line-height: 1.6; }
.z9b4-footer__col-title { font-size: 0.78rem; font-weight: 800; color: var(--clr-gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.z9b4-footer__nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.z9b4-footer__nav a { color: var(--clr-text-muted); font-size: 0.88rem; text-decoration: none; transition: color var(--transition); }
.z9b4-footer__nav a:hover { color: var(--clr-gold); }
.z9b4-footer__payments { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.z9b4-footer__pay-badge {
  background: var(--clr-card); border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm); padding: 5px 12px;
  font-size: 0.78rem; font-weight: 700; color: var(--clr-text-muted);
  display: flex; align-items: center; gap: 5px;
}
.z9b4-footer__providers { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.z9b4-footer__prov-badge {
  background: var(--clr-card-alt); border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm); padding: 4px 10px;
  font-size: 0.75rem; font-weight: 600; color: var(--clr-text-muted);
}
.z9b4-footer__bottom {
  border-top: 1px solid var(--clr-border); padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center;
}
.z9b4-footer__legal { font-size: 0.78rem; color: var(--clr-text-muted); line-height: 1.6; max-width: 820px; }
.z9b4-footer__copy { font-size: 0.82rem; color: var(--clr-text-muted); }

/* ========== WIDGET ========== */
.w1d3-widget {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1200;
  background: linear-gradient(90deg, #1a1a28 0%, #2a2a3a 100%);
  border-top: 2px solid var(--clr-gold);
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  transition: transform 0.35s ease;
}
.w1d3-widget.is-hidden { transform: translateY(100%); }
.w1d3-widget__text { flex: 1; }
.w1d3-widget__title { font-size: 0.92rem; font-weight: 800; color: #fff; }
.w1d3-widget__sub { font-size: 0.78rem; color: var(--clr-gold); font-weight: 600; }
.w1d3-widget__btn { flex-shrink: 0; background: var(--clr-red); color: #fff; font-family: var(--font-main); font-size: 0.92rem; font-weight: 800; padding: 11px 26px; border-radius: var(--radius-md); border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: background var(--transition), transform var(--transition); white-space: nowrap; }
.w1d3-widget__btn:hover { background: #e0203e; color: #fff; transform: scale(1.03); }
.w1d3-widget__close { background: none; border: none; color: var(--clr-text-muted); cursor: pointer; font-size: 1.3rem; padding: 4px 8px; line-height: 1; transition: color var(--transition); flex-shrink: 0; }
.w1d3-widget__close:hover { color: #fff; }

/* ========== UTILITY ========== */
.d-none { display: none !important; }
.text-gold { color: var(--clr-gold); }
.text-red { color: var(--clr-red); }
.text-muted { color: var(--clr-text-muted); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.gap-2 { gap: 16px; }

/* ========== WP-style unused references (structural) ========== */
.wp-block-group {}
.wp-block-columns {}
.entry-content {}
.elementor-widget-wrap {}
.post-thumbnail {}
.widget_recent_entries {}
.site-footer__widgets {}
.yoast-seo-meta {}
.wp-caption {}
.alignleft {}
.alignright {}
.aligncenter { display: block; margin: 0 auto; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .z9b4-footer__grid { grid-template-columns: 1fr 1fr; }
  .z9b4-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .z3f8-header__nav { display: none; }
  .z3f8-header__online { display: none; }
  .z3f8-burger { display: flex; }

  .m8p5-slide { min-height: 340px; }
  .m8p5-slide__content { padding: 32px 20px; }
  .m8p5-slide__title { font-size: 1.5rem; }

  .t5m9-toc__list { columns: 1; }

  .g5w3-games__grid { display: none; }
  .g5w3-games-slider-wrap { display: block; }
  .g5w3-mobile-slider { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 12px; }
  .g5w3-mobile-slider::-webkit-scrollbar { height: 4px; }
  .g5w3-mobile-slider::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 2px; }
  .g5w3-mobile-slider .g5w3-game-card { min-width: 200px; scroll-snap-align: start; flex-shrink: 0; }

  .a3k8-author { flex-direction: column; align-items: center; text-align: center; }
  .a3k8-author__links { justify-content: center; }

  .z9b4-footer__grid { grid-template-columns: 1fr; gap: 28px; }

  .w1d3-widget { padding: 10px 14px; }
  .w1d3-widget__title { font-size: 0.82rem; }

  .s9c4-reels { gap: 8px; }
  .s9c4-reel { width: 68px; height: 86px; font-size: 2.2rem; }

  .k4v1-mirror-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .q9r3-section { padding: 36px 0; }
  .m8p5-slide { min-height: 280px; }
  .m8p5-slide__content { padding: 24px 16px; }
  .z3f8-header__inner { height: 60px; padding: 0 14px; }
  .z3f8-mobile-nav { top: 60px; }
  .s9c4-reels { gap: 6px; }
  .s9c4-reel { width: 56px; height: 74px; font-size: 1.9rem; }
}

/* ========== ANIMATIONS ========== */
@keyframes pulse-glow {
  0%,100%{box-shadow: 0 0 0 0 rgba(221,196,58,0)} 50%{box-shadow: 0 0 16px 4px rgba(221,196,58,0.25)}
}
.btn--gold { animation: pulse-glow 3s infinite; }
.btn--red { animation: pulse-glow-red 3s infinite 1.5s; }
@keyframes pulse-glow-red { 0%,100%{box-shadow: 0 0 0 0 rgba(205,25,53,0)} 50%{box-shadow: 0 0 16px 4px rgba(205,25,53,0.3)} }

@keyframes slide-up { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.animate-up { animation: slide-up 0.5s ease forwards; }
