/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d14;
  --bg2:       #12121f;
  --bg3:       #1a1a2e;
  --card:      #16162a;
  --border:    rgba(255,255,255,.08);
  --gold:      #f0a500;
  --gold2:     #ffd060;
  --red:       #e03030;
  --grad:      linear-gradient(135deg,#e03030,#f0a500);
  --grad2:     linear-gradient(135deg,#7928ca,#f0a500);
  --text:      #e8e8f0;
  --muted:     #8888aa;
  --radius:    12px;
  --transition:.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,20,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header__logo img { height: 44px; width: auto; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.header__nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
  white-space: nowrap;
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--gold);
  background: rgba(240,165,0,.1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; border: none; cursor: pointer; border-radius: 8px; font-weight: 600; font-size: .9rem; transition: var(--transition); text-decoration: none; }

.btn--outline {
  padding: 9px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--primary {
  padding: 9px 22px;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(224,48,48,.35);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(240,165,0,.4); }

.btn--gold {
  padding: 14px 36px;
  font-size: 1.05rem;
  background: var(--grad);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 30px rgba(240,165,0,.4);
  letter-spacing: .03em;
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(240,165,0,.5); }

.btn--lg {
  padding: 16px 48px;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ===================== WINS TICKER ===================== */
.wins-ticker {
  background: rgba(240,165,0,.08);
  border-bottom: 1px solid rgba(240,165,0,.15);
  margin-top: 68px;
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}

.wins-ticker__label {
  flex-shrink: 0;
  padding: 0 16px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-right: 1px solid rgba(240,165,0,.2);
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(240,165,0,.06);
}

.wins-ticker__track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
  padding-left: 40px;
}

.wins-ticker__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
}
.wins-ticker__avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad2);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.wins-ticker__name { color: var(--muted); }
.wins-ticker__game { color: var(--text); font-weight: 500; }
.wins-ticker__amount { color: var(--gold); font-weight: 700; }

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../background.webp') center/cover no-repeat;
  filter: brightness(.45) saturate(1.2);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,20,.95) 40%, rgba(13,13,20,.5) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,.15);
  border: 1px solid rgba(240,165,0,.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.hero__badge::before { content: '●'; font-size: .5rem; animation: pulse 1.5s ease infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.hero__title span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__stats {
  display: flex;
  gap: 28px;
}
.hero__stat { text-align: center; }
.hero__stat-num { font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero__stat-label { font-size: .75rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* Bonus card */
.bonus-card {
  background: linear-gradient(145deg, rgba(26,26,46,.95), rgba(22,22,42,.98));
  border: 1px solid rgba(240,165,0,.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(240,165,0,.15), transparent 70%);
  pointer-events: none;
}

.bonus-card__eyebrow { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 12px; }
.bonus-card__title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.bonus-card__plus { font-size: 1.4rem; color: var(--muted); margin: 8px 0; }
.bonus-card__fs { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--gold2); margin-bottom: 24px; }
.bonus-card__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.bonus-card__feat { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--muted); }
.bonus-card__feat::before { content: '✓'; width: 20px; height: 20px; background: rgba(240,165,0,.15); border: 1px solid rgba(240,165,0,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--gold); flex-shrink: 0; }
.bonus-card__timer { font-size: .75rem; color: var(--muted); margin-top: 14px; }
.bonus-card__timer span { color: var(--gold); }

/* ===================== SECTION COMMON ===================== */
.section { padding: 80px 20px; }
.section--dark { background: var(--bg2); }

.container { max-width: 1280px; margin: 0 auto; }

.section-header { margin-bottom: 44px; }
.section-header__eyebrow { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.section-header__title { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; }
.section-header__title span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-header__desc { color: var(--muted); margin-top: 12px; font-size: .95rem; line-height: 1.6; max-width: 560px; }

/* ===================== GAME CATEGORIES ===================== */
.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.cat-btn:hover, .cat-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(240,165,0,.08);
}

/* ===================== GAME CARDS ===================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.game-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.game-card:hover { transform: translateY(-4px); border-color: rgba(240,165,0,.3); box-shadow: 0 12px 40px rgba(0,0,0,.4); }

.game-card__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a3e, #0d0d20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.game-card__img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad2);
  opacity: .12;
}

.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,20,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.game-card:hover .game-card__overlay { opacity: 1; }

.game-card__play {
  width: 52px; height: 52px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 20px rgba(240,165,0,.4);
}

.game-card__info { padding: 12px; }
.game-card__name { font-size: .85rem; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.game-card__provider { font-size: .72rem; color: var(--muted); }

.game-card__hot {
  position: absolute;
  top: 8px; right: 8px;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
}
.game-card__new {
  position: absolute;
  top: 8px; right: 8px;
  background: #0078d4;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
}

/* ===================== FEATURES ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(240,165,0,.25); transform: translateY(-2px); }
.feature-card__icon { width: 52px; height: 52px; background: rgba(240,165,0,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.feature-card__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card__desc { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ===================== BONUS CARDS ===================== */
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.bonus-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.bonus-item:hover { border-color: rgba(240,165,0,.3); transform: translateY(-3px); box-shadow: 0 16px 50px rgba(0,0,0,.4); }
.bonus-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad); }
.bonus-item__tag { display: inline-block; background: rgba(240,165,0,.12); border: 1px solid rgba(240,165,0,.25); color: var(--gold); font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 10px; border-radius: 4px; margin-bottom: 14px; }
.bonus-item__amount { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 8px; }
.bonus-item__title { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.bonus-item__desc { font-size: .85rem; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.bonus-item__cond { font-size: .75rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 14px; display: flex; flex-direction: column; gap: 5px; }
.bonus-item__cond li { display: flex; align-items: center; gap: 6px; }
.bonus-item__cond li::before { content: '▸'; color: var(--gold); font-size: .6rem; }

/* ===================== LIVE CASINO ===================== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.live-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.live-card:hover { border-color: rgba(240,165,0,.3); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,.5); }
.live-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a0a2e, #0d1020);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 3.5rem;
}
.live-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #e03030;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-badge::before { content: '●'; animation: pulse 1s ease infinite; }
.live-card__info { padding: 16px; }
.live-card__name { font-weight: 700; margin-bottom: 4px; }
.live-card__provider { font-size: .8rem; color: var(--muted); margin-bottom: 10px; }
.live-card__stats { display: flex; justify-content: space-between; font-size: .78rem; }
.live-card__limit { color: var(--muted); }
.live-card__players { color: var(--gold); font-weight: 600; }

/* ===================== FAQ ===================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(240,165,0,.3); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  gap: 16px;
}
.faq-q:hover { color: var(--gold); }
.faq-q__icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  transition: var(--transition);
}
.faq-item.open .faq-q__icon { transform: rotate(45deg); border-color: var(--gold); color: var(--gold); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
.faq-a p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ===================== SEO TEXT ===================== */
.seo-section {
  padding: 80px 20px;
  border-top: 1px solid var(--border);
}
.seo-content { columns: 2; gap: 48px; }
.seo-content h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; break-before: column; }
.seo-content h3 { font-size: 1rem; font-weight: 600; margin: 20px 0 8px; color: var(--gold); }
.seo-content p { font-size: .875rem; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.seo-content ul { margin-bottom: 14px; }
.seo-content ul li { font-size: .875rem; color: var(--muted); line-height: 1.7; padding-left: 16px; position: relative; }
.seo-content ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: .7rem; }

/* ===================== SUPPORT WIDGET ===================== */
.support-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}
.support-btn {
  width: 58px; height: 58px;
  background: var(--grad);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(224,48,48,.4);
  transition: var(--transition);
  border: none;
}
.support-btn:hover { transform: scale(1.1); }
.support-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
  display: none;
}
.support-popup.open { display: block; animation: fadeUp .2s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.support-popup__title { font-weight: 700; font-size: .9rem; margin-bottom: 6px; }
.support-popup__desc { font-size: .78rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.support-popup__link { display: block; text-align: center; background: var(--grad); color: #fff; padding: 9px; border-radius: 8px; font-size: .85rem; font-weight: 600; }

/* ===================== WIN NOTIFICATION ===================== */
.win-notification {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.win-toast {
  background: var(--card);
  border: 1px solid rgba(240,165,0,.3);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
  animation: toastIn .4s cubic-bezier(.175,.885,.32,1.275) both;
  pointer-events: all;
}
.win-toast.out { animation: toastOut .3s ease both; }
@keyframes toastIn { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-24px); } }
.win-toast__icon { font-size: 1.8rem; flex-shrink: 0; }
.win-toast__body {}
.win-toast__player { font-size: .78rem; color: var(--muted); margin-bottom: 2px; }
.win-toast__amount { font-size: .95rem; font-weight: 800; color: var(--gold); }
.win-toast__game { font-size: .75rem; color: var(--muted); }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 20px 30px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer__logo img { height: 40px; margin-bottom: 14px; }
.footer__desc { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.footer__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__badge { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 5px 10px; font-size: .72rem; color: var(--muted); }
.footer__col h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: .85rem; color: var(--muted); transition: var(--transition); }
.footer__col ul li a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: .8rem; color: var(--muted); }
.footer__disclaimer { font-size: .75rem; color: var(--muted); max-width: 600px; line-height: 1.6; }
.footer__18 { width: 32px; height: 32px; background: var(--card); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 700; flex-shrink: 0; }

/* ===================== PAGE HERO ===================== */
.page-hero {
  margin-top: 68px;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(240,165,0,.08), transparent 70%);
  pointer-events: none;
}
.page-hero__eyebrow { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.page-hero__title { font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; margin-bottom: 14px; }
.page-hero__title span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero__desc { font-size: .95rem; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ===================== PROMO BANNER ===================== */
.promo-banner {
  background: linear-gradient(135deg, rgba(26,26,46,.95), rgba(22,22,42,.98));
  border: 1px solid rgba(240,165,0,.2);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}
.promo-banner::before { content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(240,165,0,.12), transparent 70%); }
.promo-banner::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(224,48,48,.1), transparent 70%); }
.promo-banner__title { font-size: clamp(1.4rem,3vw,2.2rem); font-weight: 900; margin-bottom: 8px; }
.promo-banner__title span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.promo-banner__sub { color: var(--muted); margin-bottom: 28px; font-size: .95rem; }

/* ===================== SEO ARTICLE ===================== */
.seo-article__header { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.seo-article__h2 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.seo-article__lead { font-size: .92rem; color: var(--muted); line-height: 1.8; margin-top: 10px; }
.seo-article__grid { columns: 2; gap: 48px; margin-bottom: 44px; }
.seo-article__section { margin-bottom: 28px; break-inside: avoid; }
.seo-article__section .seo-article__h2 { font-size: 1.05rem; color: var(--gold); }
.seo-article__text { font-size: .875rem; color: var(--muted); line-height: 1.8; }
.seo-article__text a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.seo-article__text a:hover { color: var(--gold2); }
.seo-article__faq { margin-bottom: 40px; }
.seo-article__faq .seo-article__h2 { margin-bottom: 20px; }
.seo-nav { padding-top: 28px; border-top: 1px solid var(--border); }
.seo-nav__title { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 14px; }
.seo-nav__list { display: flex; flex-wrap: wrap; gap: 8px 0; }
.seo-nav__list li { width: 50%; }
.seo-nav__list li a { font-size: .85rem; color: var(--muted); transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.seo-nav__list li a::before { content: '→'; color: var(--gold); font-size: .75rem; flex-shrink: 0; }
.seo-nav__list li a:hover { color: var(--text); }

@media (max-width: 768px) {
  .seo-article__grid { columns: 1; }
  .seo-nav__list li { width: 100%; }
}

/* ===================== MOBILE ===================== */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .bonus-card { max-width: 480px; margin: 0 auto; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .seo-content { columns: 1; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__nav.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(13,13,20,.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; z-index: 999; }
  .burger { display: flex; }
  .header__actions .btn--outline { display: none; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .win-notification { left: 12px; bottom: 12px; }
  .win-toast { max-width: 240px; }
}
