/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d1a;
  --bg2:       #13132a;
  --bg3:       #1a1a35;
  --accent:    #c8a84b;
  --accent2:   #e8c86e;
  --purple:    #7b2fff;
  --purple2:   #9d5cff;
  --red:       #e63946;
  --green:     #2ecc71;
  --text:      #e8e8f0;
  --muted:     #8888aa;
  --card-bg:   #1c1c38;
  --border:    #2a2a50;
  --radius:    12px;
  --radius-sm: 8px;
  --font:      'Segoe UI', 'Arial', sans-serif;
  --glow:      0 0 18px rgba(200,168,75,.35);
  --glow-p:    0 0 18px rgba(123,47,255,.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font); }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

/* ========== UTILITY ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: transform .15s, box-shadow .15s, filter .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, #c8a84b 0%, #f0d980 50%, #c8a84b 100%);
  color: #1a1200;
  box-shadow: var(--glow);
}
.btn-purple {
  background: linear-gradient(135deg, #7b2fff 0%, #b060ff 100%);
  color: #fff;
  box-shadow: var(--glow-p);
}
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
.btn-outline:hover { background: var(--accent); color: #1a1200; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-hot { background: var(--red); color: #fff; }
.badge-new { background: var(--purple); color: #fff; }
.badge-live { background: var(--green); color: #fff; animation: pulse 1.5s infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,.5); }
  50% { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
}

/* ========== HEADER ========== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(13,13,26,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex; align-items: center;
}

.header-inner {
  display: flex; align-items: center; gap: 20px; width: 100%;
}

.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap img { height: 42px; width: auto; }

.nav-main {
  display: flex; align-items: center; gap: 4px;
  margin: 0 auto;
}
.nav-main a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.nav-main a:hover, .nav-main a.active {
  color: var(--accent);
  background: rgba(200,168,75,.08);
}
.nav-main a svg { width: 16px; height: 16px; }

.header-cta {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}

.burger {
  display: none;
  width: 36px; height: 36px;
  background: none; border: none;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 4px;
}
.burger span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; top: 64px; z-index: 999;
  background: rgba(13,13,26,.98);
  padding: 24px 16px;
  flex-direction: column; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: all .2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--accent); border-color: var(--accent); background: rgba(200,168,75,.06); }
.mobile-nav .btn { width: 100%; margin-top: 8px; }

/* ========== TICKER ========== */
.ticker-wrap {
  background: linear-gradient(90deg, var(--bg2) 0%, var(--bg3) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 38px;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 32px;
  font-size: 13px; color: var(--muted);
  border-right: 1px solid var(--border);
}
.ticker-item strong { color: var(--accent); }
.ticker-item .icon { font-size: 16px; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== HERO BANNER ========== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex; align-items: center;
  background:
    url('../guest_banner.webp') center/cover no-repeat,
    linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 40%, #0d0d1a 100%);
}

/* Dark overlay so text is always readable */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,26,.88) 0%,
    rgba(13,13,26,.72) 50%,
    rgba(13,13,26,.85) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 1;
  padding: 72px 0;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,47,255,.2);
  border: 1px solid var(--purple);
  color: var(--purple2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}

.hero-bonus {
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #c8a84b, #f0d980, #c8a84b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  margin-bottom: 8px;
}
.hero-sub {
  font-size: clamp(16px, 2.6vw, 22px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.hero-desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
}

/* ========== FEATURES STRIP ========== */
.features-strip {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
}
.features-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
  transition: background .2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(200,168,75,.04); }
.feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--bg3), var(--card-bg));
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.feature-text { font-size: 13px; }
.feature-text strong { display: block; color: var(--accent); font-size: 14px; margin-bottom: 2px; }

/* ========== SECTION ========== */
.section { padding: 48px 0; }
.section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
}
.section-title span { color: var(--accent); }
.section-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--purple2);
  transition: gap .2s;
}
.section-link:hover { gap: 10px; }

/* ========== 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;
  aspect-ratio: 4/3;
  background: var(--card-bg);
  cursor: pointer;
  group: '';
}
.game-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
  opacity: 0; transition: opacity .25s;
}
.game-card:hover::after { opacity: 1; }
.game-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.game-card:hover img { transform: scale(1.07); }

.game-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  opacity: 0; transition: opacity .25s;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-overlay .btn { font-size: 12px; padding: 9px 18px; }

.game-badge {
  position: absolute; top: 8px; left: 8px; z-index: 3;
}

/* ========== LIVE WINS TICKER ========== */
.wins-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.wins-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 700;
  margin-bottom: 16px;
}
.wins-title .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s infinite;
}

.wins-list {
  display: flex; flex-direction: column; gap: 8px;
  max-height: 320px;
  overflow: hidden;
}
.win-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  animation: slideIn .4s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.win-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.win-info { flex: 1; }
.win-name { font-weight: 600; color: var(--text); }
.win-game { color: var(--muted); font-size: 12px; }
.win-amount {
  font-weight: 800; font-size: 15px;
  color: var(--green);
  white-space: nowrap;
}
.win-time { color: var(--muted); font-size: 11px; white-space: nowrap; }

/* ========== PROMO CARDS ========== */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.promo-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.promo-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.promo-img {
  width: 100%; height: 160px;
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  position: relative; overflow: hidden;
}
.promo-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(123,47,255,.3), rgba(200,168,75,.2));
}
.promo-body { padding: 20px; }
.promo-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--purple2); margin-bottom: 6px;
}
.promo-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.promo-value { font-size: 26px; font-weight: 900; color: var(--accent); margin-bottom: 8px; }
.promo-desc { color: var(--muted); font-size: 13px; margin-bottom: 16px; }

/* ========== INFO TEXT ========== */
.info-section { padding: 48px 0; }
.info-section .container {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.info-section h2 {
  font-size: 22px; font-weight: 700;
  color: var(--accent); margin-bottom: 20px;
}
.info-section h3 {
  font-size: 17px; font-weight: 700;
  margin: 24px 0 10px;
}
.info-section p { color: var(--muted); margin-bottom: 12px; }
.info-section ul { padding-left: 0; }
.info-section li {
  color: var(--muted);
  padding: 4px 0 4px 20px;
  position: relative;
}
.info-section li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--accent);
}
.info-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%; background: none; text-align: left;
  padding: 18px 20px;
  font-size: 15px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  transition: transform .3s, border-color .2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--accent); color: var(--accent); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 20px;
  color: var(--muted); font-size: 14px;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 18px; }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--bg2) 0%, #1a0a2e 100%);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, #c8a84b, #f0d980);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.page-hero p { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto 28px; }

/* ========== FILTERS ========== */
.filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px; font-weight: 600;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* ========== LIVE TABLES ========== */
.tables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.table-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.table-card:hover { border-color: var(--purple); transform: translateY(-3px); }
.table-img {
  position: relative;
  height: 160px;
  background: var(--bg3);
  overflow: hidden;
}
.table-img img { width: 100%; height: 100%; object-fit: cover; }
.table-live-badge {
  position: absolute; top: 10px; right: 10px;
  background: rgba(46,204,113,.2);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 3px 10px; border-radius: 50px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; gap: 5px;
}
.table-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite; }
.table-body { padding: 16px; }
.table-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.table-provider { color: var(--muted); font-size: 12px; margin-bottom: 12px; }
.table-stats {
  display: flex; gap: 12px; margin-bottom: 14px;
  font-size: 12px;
}
.stat-label { color: var(--muted); }
.stat-val { color: var(--accent); font-weight: 700; }

/* ========== BONUSES PAGE ========== */
.bonus-hero-val {
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #c8a84b, #f0d980, #c8a84b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bonus-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 48px; }
.bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.bonus-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.bonus-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(123,47,255,.18), transparent 70%);
}
.bonus-icon { font-size: 44px; margin-bottom: 16px; }
.bonus-card-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--purple2); margin-bottom: 8px; }
.bonus-card-title { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.bonus-card-val { font-size: 32px; font-weight: 900; color: var(--accent); margin-bottom: 12px; }
.bonus-card-desc { color: var(--muted); font-size: 13px; margin-bottom: 20px; line-height: 1.7; }
.bonus-terms {
  font-size: 11px; color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 12px; margin-top: 12px;
}
.wager-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,168,75,.1);
  border: 1px solid rgba(200,168,75,.3);
  color: var(--accent);
  padding: 4px 12px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 12px;
}

/* ========== SEO TEXT SECTIONS ========== */
.seo-section { margin-bottom: 32px; }
.seo-section:last-of-type { margin-bottom: 0; }
.seo-section__title {
  font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.seo-section__text {
  color: var(--muted); line-height: 1.8; font-size: 14px;
}
.seo-faq { margin-top: 40px; margin-bottom: 32px; }
.seo-links { margin-top: 40px; }
.seo-links__list {
  display: flex; flex-direction: column; gap: 12px;
  padding: 0;
}
.seo-links__list li {
  padding: 12px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--muted);
  line-height: 1.6;
}
.seo-links__list li a {
  color: var(--accent); font-weight: 600;
  transition: color .2s;
}
.seo-links__list li a:hover { color: var(--accent2); text-decoration: underline; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-wrap { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.footer-col h4 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--accent); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--muted); font-size: 13px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { color: var(--muted); font-size: 12px; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  font-size: 11px; font-weight: 700; color: var(--muted);
}
.payment-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.payment-icon {
  padding: 4px 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 600; color: var(--muted);
}

/* ========== NOTIFICATION TOAST ========== */
.win-toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 9999;
  background: var(--card-bg);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: toastIn .4s ease, toastOut .4s ease 4.6s forwards;
  max-width: 320px;
  pointer-events: none;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-30px); }
}
.toast-icon { font-size: 28px; flex-shrink: 0; }
.toast-text { font-size: 13px; }
.toast-text strong { display: block; font-size: 15px; color: var(--green); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .info-cols { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  .nav-main { display: none; }
  .header-cta .btn { display: none; }
  .burger { display: flex; }

  .features-inner { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid var(--border); }
  .feature-item:nth-child(4) { border-right: none; }
  .feature-item:nth-child(3), .feature-item:nth-child(4) { border-top: 1px solid var(--border); }

  .hero-content { padding: 48px 0; }

  .games-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .tables-grid { grid-template-columns: 1fr 1fr; }
  .bonus-cards { grid-template-columns: 1fr; }
  .info-section .container { padding: 24px; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .features-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .tables-grid { grid-template-columns: 1fr; }
  .win-toast { left: 12px; right: 12px; max-width: none; }
}
