/* ============================================================
   LeeBet Pro — Global Styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #f5c518;
  --gold-light: #ffd84d;
  --gold-dark: #c49a0a;
  --bg-dark: #0d0d14;
  --bg-card: #16161f;
  --bg-card2: #1e1e2a;
  --text: #e8e8f0;
  --text-muted: #8888a8;
  --red: #e63b3b;
  --green: #2ecc71;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ================================================================
   HEADER / NAV
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,20,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,197,24,.18);
}

.header-inner {
  max-width: 1280px; margin: auto;
  display: flex; align-items: center; gap: 20px;
  padding: 10px 20px;
}

.logo img { height: 44px; }

.main-nav {
  display: flex; gap: 4px; margin-left: 16px;
}

.main-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .88rem; font-weight: 600; letter-spacing: .03em;
  color: var(--text-muted);
  transition: color .2s, background .2s;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); background: rgba(245,197,24,.1); }

.header-actions { margin-left: auto; display: flex; gap: 10px; }

.btn-login {
  padding: 9px 20px; border-radius: 8px;
  background: transparent; border: 1.5px solid rgba(245,197,24,.4);
  color: var(--gold); font-size: .88rem; font-weight: 600;
  transition: border-color .2s, background .2s;
}
.btn-login:hover { border-color: var(--gold); background: rgba(245,197,24,.08); }

.btn-register {
  padding: 9px 20px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #111; font-size: .88rem; font-weight: 700;
  box-shadow: 0 2px 12px rgba(245,197,24,.35);
  transition: transform .15s, box-shadow .15s;
}
.btn-register:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(245,197,24,.5); }

.burger { display: none; background: none; border: none; padding: 4px; }
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: transform .2s, opacity .2s;
  border-radius: 2px;
}

/* ================================================================
   WINS TICKER
   ================================================================ */
.wins-ticker {
  background: rgba(30,30,42,.95);
  border-bottom: 1px solid rgba(245,197,24,.1);
  overflow: hidden; padding: 0;
}
.wins-ticker-inner {
  display: flex; align-items: center;
  max-width: 1280px; margin: auto; padding: 0 20px;
}
.wins-ticker-label {
  white-space: nowrap; padding: 8px 14px 8px 0;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  color: var(--gold); text-transform: uppercase;
  border-right: 1px solid rgba(245,197,24,.2); margin-right: 14px;
  flex-shrink: 0;
}
.wins-track-wrap { overflow: hidden; flex: 1; }
.wins-track {
  display: flex; gap: 32px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}
.win-item {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; flex-shrink: 0;
}
.win-item .avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #a259ff, #f24e1e);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.win-item .name { color: var(--text-muted); }
.win-item .amount { color: var(--green); font-weight: 700; }
.win-item .game { color: var(--text-muted); font-style: italic; font-size: .75rem; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 520px;
  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);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(13,13,20,.85) 30%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: auto; padding: 60px 20px;
  display: flex; flex-direction: column; gap: 20px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,.15); border: 1px solid rgba(245,197,24,.3);
  padding: 5px 14px; border-radius: 20px;
  font-size: .78rem; font-weight: 600; color: var(--gold);
  width: fit-content;
}
.hero-badge::before { content: '🎰'; }

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900; line-height: 1.1;
  color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.8);
}
.hero-title span { color: var(--gold); }

.hero-bonus {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.bonus-chip {
  background: linear-gradient(135deg, var(--gold) 0%, #ff8c00 100%);
  padding: 14px 28px; border-radius: var(--radius);
  font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 900;
  color: #111; line-height: 1;
  box-shadow: 0 6px 32px rgba(245,197,24,.45);
}
.bonus-plus {
  font-size: 2.2rem; font-weight: 900; color: var(--gold);
}
.bonus-fs {
  background: linear-gradient(135deg, #7c3aed 0%, #db2777 100%);
  padding: 14px 28px; border-radius: var(--radius);
  font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 900;
  color: #fff; line-height: 1;
  box-shadow: 0 6px 32px rgba(124,58,237,.4);
}

.hero-sub {
  color: rgba(255,255,255,.75); font-size: 1rem; max-width: 520px;
}

.btn-hero {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 38px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #111; font-size: 1.1rem; font-weight: 800;
  box-shadow: 0 6px 28px rgba(245,197,24,.5);
  transition: transform .15s, box-shadow .15s;
  width: fit-content;
  animation: pulse-btn 2.5s ease-in-out infinite;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(245,197,24,.65); animation: none; }
.btn-hero::after { content: '→'; font-size: 1.2rem; }

@keyframes pulse-btn {
  0%,100% { box-shadow: 0 6px 28px rgba(245,197,24,.5); }
  50%      { box-shadow: 0 8px 40px rgba(245,197,24,.75); }
}

.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap; margin-top: 4px;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: rgba(255,255,255,.6);
}
.trust-item .icon { font-size: 1rem; }

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.section { padding: 56px 20px; }
.section-inner { max-width: 1280px; margin: auto; }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 10px;
}
.section-title {
  font-size: 1.55rem; font-weight: 800;
  color: #fff;
}
.section-title span { color: var(--gold); }
.section-link {
  font-size: .85rem; font-weight: 600;
  color: var(--gold); opacity: .8;
  transition: opacity .2s;
}
.section-link:hover { opacity: 1; }

/* ================================================================
   GAMES GRID
   ================================================================ */
.games-section { background: var(--bg-dark); }

.games-tabs {
  display: flex; gap: 6px; margin-bottom: 24px; flex-wrap: wrap;
}
.games-tab {
  padding: 7px 16px; border-radius: 20px;
  background: var(--bg-card2); color: var(--text-muted);
  font-size: .82rem; font-weight: 600;
  border: 1.5px solid transparent;
  transition: all .2s;
}
.games-tab.active,
.games-tab:hover {
  background: rgba(245,197,24,.1);
  border-color: rgba(245,197,24,.4);
  color: var(--gold);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 14px;
}

.game-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; background: var(--bg-card2);
  cursor: pointer;
  transition: transform .22s, box-shadow .22s;
  aspect-ratio: 3/4;
}
.game-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.game-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.6); }
.game-card:hover img { transform: scale(1.05); }

.game-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.88) 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 10px;
  opacity: 0; transition: opacity .25s;
}
.game-card:hover .game-overlay { opacity: 1; }

.game-name {
  font-size: .8rem; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.game-play-btn {
  display: block; width: 100%;
  padding: 8px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #111; font-size: .8rem; font-weight: 800;
  text-align: center;
  transition: transform .15s;
}
.game-play-btn:hover { transform: scale(1.04); }

.hot-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--red); color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: 3px 7px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}
.new-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--green); color: #fff;
  font-size: .65rem; font-weight: 700;
  padding: 3px 7px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}

/* ================================================================
   BONUS BANNER
   ================================================================ */
.bonus-section { background: var(--bg-card); }

.bonus-banner {
  background: linear-gradient(135deg, #1a1040 0%, #0f2040 50%, #1a1040 100%);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: 18px;
  padding: 48px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.bonus-banner::before {
  content: ''; position: absolute;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,.12) 0%, transparent 70%);
  right: -80px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}

.bonus-banner-text { flex: 1; min-width: 240px; }
.bonus-banner-text h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900; color: #fff; margin-bottom: 10px;
}
.bonus-banner-text h2 span { color: var(--gold); }
.bonus-banner-text p { color: rgba(255,255,255,.65); font-size: .95rem; max-width: 400px; }

.bonus-amounts {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
}
.b-amount {
  text-align: center;
}
.b-amount .val {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900;
  line-height: 1;
}
.b-amount .val.gold { color: var(--gold); }
.b-amount .val.purple { color: #a78bfa; }
.b-amount .label {
  font-size: .75rem; color: var(--text-muted); margin-top: 2px;
  text-transform: uppercase; letter-spacing: .06em;
}

.btn-banner {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 34px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold) 0%, #ff8c00 100%);
  color: #111; font-size: 1rem; font-weight: 800;
  box-shadow: 0 4px 24px rgba(245,197,24,.45);
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
}
.btn-banner:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,197,24,.6); }

/* ================================================================
   FEATURES
   ================================================================ */
.features-section { background: var(--bg-dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(245,197,24,.25); transform: translateY(-3px); }
.feature-icon {
  font-size: 2rem; margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: #fff;
}
.feature-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.55; }

/* ================================================================
   INFO / SEO TEXT
   ================================================================ */
.info-section { background: var(--bg-card); }

.info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
@media (max-width: 720px) { .info-grid { grid-template-columns: 1fr; } }

.info-block h2 {
  font-size: 1.3rem; font-weight: 800; margin-bottom: 16px; color: #fff;
}
.info-block h3 { font-size: 1rem; font-weight: 700; margin: 18px 0 8px; color: var(--gold); }
.info-block p  { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.info-block ol, .info-block ul {
  padding-left: 20px; font-size: .88rem; color: var(--text-muted); line-height: 1.8;
}

/* ================================================================
   SUPPORT STRIP
   ================================================================ */
.support-strip {
  background: linear-gradient(90deg, #0f2040 0%, #1a1040 100%);
  border-top: 1px solid rgba(245,197,24,.12);
  border-bottom: 1px solid rgba(245,197,24,.12);
}
.support-strip-inner {
  max-width: 1280px; margin: auto; padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.support-strip-left {
  display: flex; align-items: center; gap: 12px;
}
.support-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.support-strip-left strong { color: #fff; font-size: .95rem; }
.support-strip-left span { color: var(--text-muted); font-size: .85rem; }

.btn-chat {
  padding: 9px 22px; border-radius: 8px;
  background: var(--green); color: #fff;
  font-size: .85rem; font-weight: 700;
  transition: filter .2s;
}
.btn-chat:hover { filter: brightness(1.15); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: #0a0a10;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 20px 24px;
}
.footer-inner {
  max-width: 1280px; margin: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
}
@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-brand img { height: 38px; margin-bottom: 14px; }
.footer-brand p { font-size: .82rem; color: var(--text-muted); line-height: 1.65; max-width: 280px; }

.footer-col h4 {
  font-size: .88rem; font-weight: 700; margin-bottom: 14px;
  color: var(--gold); text-transform: uppercase; letter-spacing: .06em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: .83rem; color: var(--text-muted);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  max-width: 1280px; margin: 32px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .78rem; color: var(--text-muted); }
.age-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 4px 10px; border-radius: 6px;
  font-size: .8rem; font-weight: 700; color: var(--text-muted);
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, #0f1a35 0%, #1a0f35 100%);
  border-bottom: 1px solid rgba(245,197,24,.15);
  padding: 52px 20px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900; color: #fff;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p { margin-top: 12px; color: var(--text-muted); font-size: 1rem; max-width: 600px; margin-inline: auto; }

/* ================================================================
   LIVE WINS POPUP
   ================================================================ */
.live-popup {
  position: fixed; bottom: 24px; left: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.live-popup-card {
  background: var(--bg-card2);
  border: 1px solid rgba(245,197,24,.25);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  min-width: 240px; max-width: 300px;
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
  animation: slideIn .4s ease forwards;
  pointer-events: auto;
}
.live-popup-card.fade-out { animation: slideOut .4s ease forwards; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-40px); }
}

.popup-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 800; color: #fff;
}
.popup-body { flex: 1; min-width: 0; }
.popup-name { font-size: .8rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.popup-detail { font-size: .73rem; color: var(--text-muted); margin-top: 2px; }
.popup-amount { font-size: .95rem; font-weight: 800; color: var(--green); flex-shrink: 0; }

/* ================================================================
   BONUS CARDS
   ================================================================ */
.bonus-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.bonus-card {
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.bonus-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,.3); }
.bonus-card-head {
  padding: 28px 24px 20px;
  background: linear-gradient(135deg, #1a1040 0%, #0f2040 100%);
  text-align: center;
}
.bonus-card-head .bonus-val {
  font-size: 2.6rem; font-weight: 900; color: var(--gold); line-height: 1;
}
.bonus-card-head .bonus-type {
  font-size: .85rem; color: rgba(255,255,255,.6); margin-top: 4px;
}
.bonus-card-body { padding: 20px 24px; }
.bonus-card-body h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.bonus-card-body ul {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
  font-size: .83rem; color: var(--text-muted);
}
.bonus-card-body ul li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.bonus-card-footer { padding: 0 24px 24px; }
.btn-bonus {
  display: block; width: 100%;
  padding: 12px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #111; font-size: .92rem; font-weight: 800;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.btn-bonus:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,.4); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 860px; margin: auto; }

.faq-item {
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  background: none; color: #fff;
  font-size: .95rem; font-weight: 700;
  text-align: left; gap: 12px;
}
.faq-question:hover { background: rgba(255,255,255,.03); }
.faq-chevron {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(245,197,24,.15); border: 1px solid rgba(245,197,24,.3);
  color: var(--gold); font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 20px;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 20px 18px; }
.faq-answer p { font-size: .87rem; color: var(--text-muted); line-height: 1.7; }

/* ================================================================
   LIVE TABLES
   ================================================================ */
.live-tables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.live-table-card {
  background: var(--bg-card2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: transform .2s, border-color .2s;
}
.live-table-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,.3); }
.live-table-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  background: #1a1a2e;
}
.live-table-body { padding: 12px; }
.live-table-body h3 { font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.live-table-meta { display: flex; justify-content: space-between; font-size: .75rem; color: var(--text-muted); }
.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(231,76,60,.2); color: #e74c3c;
  padding: 2px 7px; border-radius: 4px;
  font-size: .7rem; font-weight: 700;
}
.live-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #e74c3c; animation: blink 1s infinite;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(13,13,20,.98);
    padding: 12px 20px 20px; gap: 2px;
    border-bottom: 1px solid rgba(245,197,24,.15);
    z-index: 99;
  }
  .burger { display: block; }
  .bonus-banner { padding: 32px 24px; }
  .hero-content { padding: 40px 20px; }
}

@media (max-width: 640px) {
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
  .header-actions .btn-login { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .live-popup { left: 12px; bottom: 12px; }
  .live-popup-card { min-width: 200px; }
}
