/* =============================================
   KUSH CASINO — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #0d0d14;
  --bg-secondary: #14141f;
  --bg-card: #1a1a2a;
  --bg-card-hover: #1f1f30;
  --accent: #f5b942;
  --accent-dark: #c9922a;
  --accent-glow: rgba(245, 185, 66, 0.2);
  --accent2: #e8963c;
  --green: #2ecc71;
  --green-dark: #27ae60;
  --red: #e74c3c;
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #5a5a72;
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(245,185,66,0.3);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 4px 20px rgba(245,185,66,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent-dark); border-radius: 3px; }

/* ─────────────────────────────────────
   HEADER
───────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,20,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo img {
  height: 38px;
  width: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.header__nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.header__nav a.active {
  color: var(--accent);
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000 !important;
  font-weight: 700;
  font-size: 14px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}
.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(245,185,66,0.4);
  background: linear-gradient(135deg, #ffc84a, var(--accent));
  color: #000 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─────────────────────────────────────
   TICKER BANNER
───────────────────────────────────── */
.ticker {
  background: linear-gradient(90deg, #1a1a2a, #1f1825, #1a1a2a);
  border-bottom: 1px solid var(--border-accent);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-primary), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--bg-primary), transparent); }

.ticker__track {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ticker__item svg { width: 16px; height: 16px; flex-shrink: 0; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position: relative;
  padding: 60px 20px 50px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,185,66,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(232,150,60,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__text { position: relative; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245,185,66,0.12);
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__badge::before { content: '●'; color: var(--green); font-size: 8px; }
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 16px;
  color: #fff;
}
.hero__title span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,185,66,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,185,66,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}
.hero__banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.hero__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* ─────────────────────────────────────
   STATS ROW
───────────────────────────────────── */
.stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}
.stats__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
}
.stat-item__value {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-item__label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─────────────────────────────────────
   SECTION
───────────────────────────────────── */
.section {
  padding: 48px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.section__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section__title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: linear-gradient(var(--accent), var(--accent2));
  border-radius: 2px;
  flex-shrink: 0;
}
.section__link {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.section__link:hover { opacity: 0.75; }

/* ─────────────────────────────────────
   GAME TABS
───────────────────────────────────── */
.game-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.game-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.game-tab:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
}
.game-tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color: #000;
}

/* ─────────────────────────────────────
   GAMES GRID
───────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--border);
}
.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  border-color: var(--border-accent);
}
.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.game-card:hover img { transform: scale(1.06); }
.game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
}
.game-card:hover .game-card__overlay { opacity: 1; }
.game-card__play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50px;
  transform: translateY(8px);
  transition: transform 0.3s;
}
.game-card:hover .game-card__play { transform: translateY(0); }
.game-card__hot {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-card__new {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ─────────────────────────────────────
   LIVE WINS
───────────────────────────────────── */
.live-wins {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 20px;
}
.live-wins__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.live-wins__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.live-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.4);
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,0.4); }
  70%  { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}
.live-wins__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 800;
}
.wins-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.win-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: win-appear 0.4s ease;
  transition: border-color 0.2s;
}
.win-item:hover { border-color: var(--border-accent); }
.win-item.new { border-color: var(--green); animation: win-appear 0.5s ease; }
@keyframes win-appear {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.win-item__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d2d3f, #3d3d52);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.win-item__info { flex: 1; min-width: 0; }
.win-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.win-item__game {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}
.win-item__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─────────────────────────────────────
   BONUS CARDS
───────────────────────────────────── */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.bonus-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
  border-color: var(--border-accent);
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(var(--accent-glow), transparent 70%);
  pointer-events: none;
}
.bonus-card__icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.bonus-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
}
.bonus-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 8px;
}
.bonus-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}
.bonus-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #000;
  font-weight: 700;
  font-size: 13px;
  border-radius: 50px;
  transition: transform 0.2s;
}
.bonus-card__btn:hover { transform: translateY(-1px); }

/* ─────────────────────────────────────
   SEO TEXT
───────────────────────────────────── */
.seo-block {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 52px 20px;
}
.seo-block__inner {
  max-width: 900px;
  margin: 0 auto;
}
.seo-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.seo-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text-primary);
}
.seo-block p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}
.seo-block ul {
  list-style: none;
  margin: 10px 0 16px;
}
.seo-block ul li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.6;
}
.seo-block ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.seo-block__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  border: none;
  background: none;
  padding: 0;
}
.seo-block__extra { display: none; }
.seo-block__extra.open { display: block; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 40px 20px 24px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer__brand img { height: 36px; margin-bottom: 14px; }
.footer__brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.footer__col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 2;
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer__18 {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.footer__disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 600px;
}

/* ─────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────── */
.page-hero {
  padding: 52px 20px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(245,185,66,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  margin-bottom: 12px;
}
.page-hero__title span {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero__sub {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* ─────────────────────────────────────
   PROVIDER LOGOS
───────────────────────────────────── */
.providers {
  padding: 32px 20px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.providers__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.providers__title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
.providers__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.provider-tag {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  transition: color 0.2s, border-color 0.2s;
}
.provider-tag:hover {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
}

/* ─────────────────────────────────────
   LIVE TABLE CARDS
───────────────────────────────────── */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  border-color: var(--border-accent);
}
.live-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2a, #2a1a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.live-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.live-card__body { padding: 14px; }
.live-card__name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.live-card__info {
  font-size: 12px;
  color: var(--text-muted);
}
.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}
.live-badge::before { content: '●'; font-size: 7px; animation: blink 1s infinite; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0; } }

/* ─────────────────────────────────────
   BONUS PAGE
───────────────────────────────────── */
.bonus-big-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.bonus-big-card:hover { border-color: var(--border-accent); }
.bonus-big-card__head {
  padding: 28px 28px 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.bonus-big-card__icon {
  font-size: 48px;
  flex-shrink: 0;
  line-height: 1;
}
.bonus-big-card__meta { flex: 1; }
.bonus-big-card__tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 6px;
}
.bonus-big-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}
.bonus-big-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.bonus-big-card__footer {
  padding: 18px 28px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.bonus-conditions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-condition {
  display: flex;
  flex-direction: column;
}
.bonus-condition__label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bonus-condition__value {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2px;
}

/* ─────────────────────────────────────
   MOBILE NAV DRAWER
───────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0,0,0,0.7);
}
.mobile-nav.open { display: block; }
.mobile-nav__drawer {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--bg-secondary);
  padding: 20px;
  transform: translateY(-100%);
  transition: transform 0.3s;
}
.mobile-nav.open .mobile-nav__drawer { transform: translateY(0); }
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 12px;
}
.mobile-nav__links a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: all 0.2s;
}
.mobile-nav__links a:hover {
  color: var(--text-primary);
  background: var(--bg-card);
  border-color: var(--border);
}
.mobile-nav__close {
  float: right;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 22px;
  cursor: pointer;
}

/* ─────────────────────────────────────
   SEO FAQ
───────────────────────────────────── */
.seo-faq {
  margin-top: 36px;
}
.seo-faq__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}
.faq-item__question:hover { color: var(--accent); }
.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-item.open .faq-item__answer { display: block; }

/* ─────────────────────────────────────
   INTERNAL LINKS
───────────────────────────────────── */
.seo-links {
  margin-top: 36px;
}
.seo-links__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12px;
}
.seo-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seo-links__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.seo-links__item:hover {
  color: var(--accent);
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}
.seo-links__item svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__banner { display: none; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
@media (max-width: 480px) {
  .hero { padding: 36px 16px 32px; }
  .section { padding: 32px 16px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .game-tab { padding: 6px 12px; font-size: 12px; }
}
