/* =====================================================
   SLOTORO DESIGN SYSTEM — slotorosite.online
   Premium Dark Casino Theme | 2026
   ===================================================== */

:root {
  --bg:         #080812;
  --bg-2:       #0e0e1c;
  --bg-3:       #13132a;
  --bg-card:    rgba(255,255,255,0.04);
  --gold:       #FFD700;
  --gold-2:     #FFA500;
  --gold-dim:   rgba(255,215,0,0.12);
  --violet:     #7C3AED;
  --violet-2:   #9B59B6;
  --cyan:       #06B6D4;
  --green:      #10B981;
  --red:        #EF4444;
  --txt:        #F1F5F9;
  --txt-2:      #94A3B8;
  --txt-3:      #64748B;
  --border:     rgba(255,215,0,0.14);
  --border-2:   rgba(255,255,255,0.07);
  --r:          12px;
  --r-lg:       20px;
  --r-xl:       28px;
  --shadow:     0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.6);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; overflow-x:hidden; }
body { font-family:'Inter',sans-serif; background:var(--bg); color:var(--txt); line-height:1.6; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
a { color:inherit; text-decoration:none; }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family:'Outfit',sans-serif; line-height:1.2; font-weight:700; }
h1 { font-size:clamp(1.9rem,5vw,3.4rem); }
h2 { font-size:clamp(1.4rem,3.5vw,2.2rem); margin-bottom:1rem; }
h3 { font-size:clamp(1.05rem,2.5vw,1.45rem); margin-bottom:.75rem; }
h4 { font-size:1rem; margin-bottom:.5rem; }
p { color:var(--txt-2); }
strong { color:var(--txt); font-weight:600; }

/* ===== LAYOUT ===== */
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
.section     { padding:80px 0; }
.section-sm  { padding:48px 0; }
.section-xs  { padding:32px 0; }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4 { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:24px; }

/* ===== HEADER ===== */
.header {
  position:sticky; top:0; z-index:999;
  background:rgba(8,8,18,0.94);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border-2);
}
.header__inner {
  display:flex; align-items:center; justify-content:space-between;
  height:68px; max-width:1200px; margin:0 auto; padding:0 24px; gap:16px;
}
.logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.logo__icon { width:38px; height:38px; flex-shrink:0; }
.logo__text {
  font-family:'Outfit',sans-serif; font-size:1.5rem; font-weight:900;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.nav { display:flex; align-items:center; gap:2px; }
.nav a {
  padding:7px 13px; border-radius:8px; font-size:.85rem;
  color:var(--txt-2); transition:all var(--transition); white-space:nowrap;
}
.nav a:hover, .nav a.active { background:var(--bg-card); color:var(--txt); }
.header__actions { display:flex; align-items:center; gap:12px; flex-shrink:0; }


/* ===== NAVIGATION & BURGER ===== */
.burger { 
  display:none; 
  flex-direction:column; 
  justify-content:space-around; 
  width:24px; 
  height:24px; 
  background:transparent; 
  cursor:pointer; 
  padding:0; 
  z-index:100; 
}
.burger span { 
  width:24px; 
  height:2px; 
  background:var(--txt); 
  border-radius:10px; 
  transition:all 0.3s linear; 
  position:relative; 
  transform-origin:1px; 
}

/* ===== LANG SWITCHER DROPDOWN ===== */
.lang-switcher {
  position: relative;
  cursor: pointer;
  z-index: 99;
}
.lang-switcher__current {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--txt-2);
  padding: 5px 10px;
  border: 1px solid var(--border-2);
  border-radius: 6px;
  transition: all var(--transition);
  background: var(--bg-card);
}
.lang-switcher__current:hover {
  color: var(--txt);
  border-color: var(--border);
}
.lang-switcher__current::after {
  content: '▼';
  font-size: 0.6rem;
  margin-left: 3px;
  color: var(--txt-3);
  transition: transform 0.3s;
}
.lang-switcher.open .lang-switcher__current::after {
  transform: rotate(180deg);
}
.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease-in-out;
  box-shadow: var(--shadow);
}
.lang-switcher.open .lang-switcher__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switcher__dropdown a {
  padding: 8px 12px;
  font-size: 0.85rem;
  color: var(--txt-2);
  transition: all var(--transition);
  text-align: left;
  display: block;
}
.lang-switcher__dropdown a:first-child { border-radius: 8px 8px 0 0; }
.lang-switcher__dropdown a:last-child { border-radius: 0 0 8px 8px; }
.lang-switcher__dropdown a:hover, .lang-switcher__dropdown a.active {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
}
.lang-sep { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 22px; border-radius:var(--r);
  font-family:'Outfit',sans-serif; font-weight:700; font-size:.9rem;
  cursor:pointer; border:none; transition:all var(--transition);
  text-decoration:none; text-align:center; letter-spacing:.2px;
}
.btn-primary {
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-2) 100%);
  color:#000; box-shadow:0 4px 20px rgba(255,165,0,0.35);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(255,165,0,0.5); }
.btn-secondary {
  background:transparent; border:1px solid var(--border); color:var(--gold);
}
.btn-secondary:hover { background:var(--gold-dim); border-color:rgba(255,215,0,0.35); }
.btn-ghost { background:var(--bg-card); border:1px solid var(--border-2); color:var(--txt); }
.btn-ghost:hover { border-color:var(--border); }
.btn-lg { padding:15px 34px; font-size:1rem; border-radius:var(--r-lg); }
.btn-sm { padding:7px 16px; font-size:.82rem; }

/* ===== HERO ===== */
.hero {
  background:linear-gradient(135deg,#12003e 0%,#080812 45%,#001025 100%);
  position:relative; overflow:hidden; padding:80px 0 100px;
}
.hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 70% 55% at 50% -10%, rgba(124,58,237,.3), transparent),
              radial-gradient(ellipse 55% 40% at 90% 60%, rgba(255,215,0,.08), transparent);
}
.hero__inner {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;
  max-width:1200px; margin:0 auto; padding:0 24px;
}
.hero__badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,215,0,.1); border:1px solid rgba(255,215,0,.3);
  border-radius:100px; padding:5px 16px;
  font-size:.78rem; font-weight:600; color:var(--gold);
  margin-bottom:20px; letter-spacing:.5px; text-transform:uppercase;
}
.hero__title { margin-bottom:20px; }
.hero__title em { font-style:normal; background:linear-gradient(135deg,var(--gold),var(--gold-2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero__desc { color:var(--txt-2); font-size:1.05rem; margin-bottom:32px; max-width:520px; }
.hero__actions { display:flex; gap:14px; flex-wrap:wrap; }
.hero__disclaimer { font-size:.75rem; color:var(--txt-3); margin-top:14px; }
.hero__card {
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
  border:1px solid var(--border); border-radius:var(--r-xl); padding:28px;
  position:relative; overflow:hidden;
}
.hero__card::before {
  content:''; position:absolute; inset:0; border-radius:var(--r-xl); pointer-events:none;
  background:linear-gradient(135deg,rgba(255,215,0,.06),rgba(124,58,237,.06));
}
.hero-stats { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--border-2); border-radius:var(--r); overflow:hidden; margin-bottom:20px; }
.hero-stat { text-align:center; padding:16px 12px; background:rgba(8,8,18,0.85); }
.hero-stat__num { font-family:'Outfit',sans-serif; font-size:1.8rem; font-weight:900; color:var(--gold); line-height:1; }
.hero-stat__lbl { font-size:.75rem; color:var(--txt-2); margin-top:5px; }

/* ===== TRUST BAR ===== */
.trust-bar { background:var(--bg-2); border-bottom:1px solid var(--border-2); padding:11px 0; }
.trust-bar__inner {
  display:flex; align-items:center; justify-content:center;
  gap:20px; flex-wrap:wrap; max-width:1200px; margin:0 auto; padding:0 24px;
}
.trust-item { display:flex; align-items:center; gap:7px; font-size:.8rem; color:var(--txt-2); }
.trust-sep { width:1px; height:18px; background:var(--border-2); }

/* ===== CARDS ===== */
.card {
  background:var(--bg-card); border:1px solid var(--border-2);
  border-radius:var(--r-lg); padding:24px; transition:all var(--transition);
}
.card:hover { border-color:var(--border); transform:translateY(-3px); box-shadow:var(--shadow); }
.card-icon { font-size:2.2rem; margin-bottom:14px; }
.card p { font-size:.9rem; }

/* ===== GAME CARDS ===== */
.game-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(min(200px,45vw),1fr)); gap:18px; }
.game-card {
  background:var(--bg-card); border:1px solid var(--border-2);
  border-radius:var(--r); overflow:hidden; transition:all .3s var(--transition);
}
.game-card:hover { border-color:rgba(255,215,0,.4); transform:translateY(-4px); box-shadow:0 12px 32px rgba(255,215,0,0.12); }
.game-card img { width:100%; aspect-ratio:16/9; object-fit:cover; }
.game-card__body { padding:12px 14px; }
.game-card__name { font-family:'Outfit',sans-serif; font-weight:600; font-size:.92rem; margin-bottom:6px; color:var(--txt); }
.game-card__meta { display:flex; justify-content:space-between; font-size:.76rem; }
.game-card__rtp { color:var(--green); font-weight:600; }
.game-card__provider { color:var(--gold); }

/* ===== BONUS HERO ===== */
.bonus-hero {
  background:linear-gradient(135deg,rgba(124,58,237,.12) 0%,rgba(255,165,0,.08) 100%);
  border:1px solid rgba(255,215,0,.2); border-radius:var(--r-xl);
  padding:40px 32px; text-align:center; position:relative; overflow:hidden;
}
.bonus-hero::before {
  content:''; position:absolute; top:-50%; left:-50%; width:200%; height:200%;
  background:conic-gradient(from 0deg,transparent,rgba(255,215,0,.03),transparent);
  animation:rotate 20s linear infinite; pointer-events:none;
}
@keyframes rotate { to { transform:rotate(360deg); } }
.bonus-hero__emoji { font-size:3rem; margin-bottom:12px; }
.bonus-hero__amount { font-family:'Outfit',sans-serif; font-size:clamp(2rem,5vw,3.2rem); font-weight:900; color:var(--gold); line-height:1.1; }
.bonus-hero__label { color:var(--txt-2); font-size:.9rem; margin-top:10px; }
.bonus-code-box { background:rgba(0,0,0,.3); border:1px dashed rgba(255,215,0,.35); border-radius:var(--r); padding:14px 20px; margin:20px 0; }
.bonus-code-box__label { font-size:.75rem; color:var(--txt-2); margin-bottom:4px; }
.bonus-code-box__code { font-family:'Outfit',sans-serif; font-size:1.1rem; font-weight:700; color:var(--gold); letter-spacing:2px; }

/* ===== STEPS ===== */
.steps { display:flex; flex-direction:column; gap:16px; }
.step { display:flex; gap:16px; align-items:flex-start; background:var(--bg-card); border:1px solid var(--border-2); border-radius:var(--r); padding:20px; transition:border-color var(--transition); }
.step:hover { border-color:var(--border); }
.step__num { width:38px; height:38px; flex-shrink:0; background:linear-gradient(135deg,var(--violet),var(--violet-2)); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Outfit',sans-serif; font-weight:800; font-size:.95rem; color:#fff; }
.step__title { font-weight:600; font-family:'Outfit',sans-serif; margin-bottom:4px; color:var(--txt); }
.step__desc { font-size:.88rem; color:var(--txt-2); }

/* ===== TABLES ===== */
.table-wrap { overflow-x:auto; border-radius:var(--r); border:1px solid var(--border-2); margin:0; max-width:100%; }
table { width:100%; border-collapse:collapse; }
thead th { background:rgba(255,215,0,.07); padding:13px 16px; text-align:left; font-family:'Outfit',sans-serif; font-size:.82rem; text-transform:uppercase; letter-spacing:.5px; color:var(--gold); border-bottom:1px solid var(--border-2); white-space:nowrap; }
tbody td { padding:13px 16px; border-bottom:1px solid rgba(255,255,255,0.04); font-size:.9rem; color:var(--txt-2); }
tbody tr:last-child td { border-bottom:none; }
tbody tr:hover td { background:rgba(255,255,255,.02); color:var(--txt); }
.td-good { color:var(--green) !important; font-weight:600; }
.td-warn { color:var(--gold) !important; font-weight:600; }
.td-bad  { color:var(--red) !important; }

/* ===== FAQ ===== */
.faq { display:flex; flex-direction:column; gap:10px; }
.faq details { background:var(--bg-card); border:1px solid var(--border-2); border-radius:var(--r); overflow:hidden; transition:border-color var(--transition); }
.faq details[open] { border-color:rgba(255,215,0,.25); }
.faq summary { padding:17px 20px; cursor:pointer; font-weight:600; font-family:'Outfit',sans-serif; font-size:.95rem; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px; color:var(--txt); transition:color var(--transition); }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:'＋'; font-size:1.1rem; color:var(--gold); flex-shrink:0; transition:transform var(--transition); }
.faq details[open] summary { color:var(--gold); }
.faq details[open] summary::after { content:'－'; }
.faq__body { padding:0 20px 18px; color:var(--txt-2); font-size:.92rem; line-height:1.7; }
.faq__body a { color:var(--gold); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align:center; margin-bottom:48px; }
.eyebrow {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,215,0,.08); border:1px solid rgba(255,215,0,.2);
  border-radius:100px; padding:4px 14px;
  font-size:.76rem; font-weight:600; color:var(--gold);
  text-transform:uppercase; letter-spacing:.5px; margin-bottom:14px;
}
.section-header p { color:var(--txt-2); max-width:580px; margin:10px auto 0; font-size:.95rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background:linear-gradient(135deg,rgba(124,58,237,.18) 0%,rgba(255,165,0,.09) 100%);
  border:1px solid rgba(255,215,0,.18); border-radius:var(--r-xl);
  padding:56px 40px; text-align:center; position:relative; overflow:hidden;
}
.cta-banner::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,rgba(255,215,0,.4),transparent); }
.cta-banner h2 { margin-bottom:12px; }
.cta-banner p { margin-bottom:28px; max-width:500px; margin-left:auto; margin-right:auto; }

/* ===== RATINGS ===== */
.stars { color:var(--gold); letter-spacing:1px; font-size:1.1rem; }
.rating { display:flex; align-items:center; gap:10px; }
.rating__score { font-family:'Outfit',sans-serif; font-weight:900; font-size:2.5rem; color:var(--gold); }
.rating__max { color:var(--txt-2); font-size:.9rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb { display:flex; align-items:center; gap:7px; font-size:.83rem; color:var(--txt-2); padding:14px 0; flex-wrap:wrap; }
.breadcrumb a { color:var(--txt-2); transition:color var(--transition); }
.breadcrumb a:hover { color:var(--gold); }
.breadcrumb__sep { color:var(--txt-3); }

/* ===== CHIPS / BADGES ===== */
.chip { display:inline-flex; align-items:center; gap:4px; background:rgba(255,255,255,.06); border-radius:100px; padding:3px 10px; font-size:.77rem; color:var(--txt-2); }
.chip-gold { background:rgba(255,215,0,.1); color:var(--gold); border:1px solid rgba(255,215,0,.2); }
.chip-green { background:rgba(16,185,129,.1); color:var(--green); border:1px solid rgba(16,185,129,.2); }
.chip-violet { background:rgba(124,58,237,.1); color:#a78bfa; border:1px solid rgba(124,58,237,.25); }
.badge-18 { background:var(--red); color:#fff; font-weight:800; font-family:'Outfit',sans-serif; width:30px; height:30px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:.78rem; flex-shrink:0; }
.badge-lic { background:rgba(255,255,255,.05); border:1px solid var(--border-2); border-radius:6px; padding:3px 10px; font-size:.73rem; color:var(--txt-2); white-space:nowrap; }

/* ===== FEATURE LISTS ===== */
.feature-list { display:flex; flex-direction:column; gap:14px; }
.feature-item { display:flex; align-items:flex-start; gap:12px; }
.feature-item__icon { font-size:1.1rem; flex-shrink:0; margin-top:1px; }
.feature-item strong { display:block; color:var(--txt); margin-bottom:2px; }
.feature-item p { font-size:.88rem; }

/* ===== PAYMENT GRID ===== */
.pay-grid { display:flex; flex-wrap:wrap; gap:12px; }
.pay-badge { background:rgba(255,255,255,.05); border:1px solid var(--border-2); border-radius:var(--r); padding:10px 18px; font-size:.85rem; color:var(--txt-2); font-weight:500; transition:all var(--transition); }
.pay-badge:hover { border-color:var(--border); color:var(--txt); }

/* ===== ODDS CARDS ===== */
.odds-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:14px; }
.odds-card { background:var(--bg-card); border:1px solid var(--border-2); border-radius:var(--r); padding:16px 12px; text-align:center; transition:all var(--transition); }
.odds-card:hover { border-color:var(--border); box-shadow:0 4px 20px rgba(255,215,0,.08); }
.odds-card__sport { font-size:.8rem; color:var(--txt-2); margin-bottom:6px; }
.odds-card__match { font-size:.82rem; font-weight:500; color:var(--txt); margin-bottom:8px; line-height:1.3; }
.odds-card__num { font-family:'Outfit',sans-serif; font-size:1.6rem; font-weight:900; color:var(--gold); }
.odds-card__type { font-size:.72rem; color:var(--txt-2); margin-top:3px; }

/* ===== INFO BOXES ===== */
.info-box { background:rgba(255,215,0,.06); border:1px solid rgba(255,215,0,.2); border-radius:var(--r); padding:16px 20px; }
.info-box--violet { background:rgba(124,58,237,.08); border-color:rgba(124,58,237,.2); }
.info-box--green { background:rgba(16,185,129,.07); border-color:rgba(16,185,129,.2); }
.info-box p { color:var(--txt-2); font-size:.88rem; }

/* ===== FOOTER ===== */
footer { background:var(--bg-2); border-top:1px solid var(--border-2); padding:56px 0 28px; }
.footer__inner { max-width:1200px; margin:0 auto; padding:0 24px; }
.footer__grid { display:grid; grid-template-columns:1.8fr repeat(3,1fr); gap:40px; margin-bottom:48px; }
.footer__about { font-family:'Outfit',sans-serif; }
.footer__about .logo { margin-bottom:14px; }
.footer__about p { font-size:.84rem; color:var(--txt-2); line-height:1.7; }
.footer__col-title { font-family:'Outfit',sans-serif; font-weight:700; font-size:.8rem; text-transform:uppercase; letter-spacing:.6px; color:var(--gold); margin-bottom:16px; }
.footer__links { display:flex; flex-direction:column; gap:10px; }
.footer__links a { color:var(--txt-2); font-size:.85rem; transition:color var(--transition); }
.footer__links a:hover { color:var(--txt); }
.footer__bottom { border-top:1px solid var(--border-2); padding-top:24px; }
.footer__badges { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:16px; }
.footer__legal { font-size:.77rem; color:var(--txt-3); line-height:1.8; }
.footer__legal a { color:var(--txt-3); text-decoration:underline; }
.footer__copy { font-size:.73rem; color:rgba(255,255,255,.15); margin-top:12px; }

/* ===== UTILITY ===== */
.text-gold { color:var(--gold) !important; }
.text-green { color:var(--green) !important; }
.text-center { text-align:center; }
.mt-4 { margin-top:16px; }
.mt-6 { margin-top:24px; }
.mt-8 { margin-top:32px; }
.mb-4 { margin-bottom:16px; }
.mb-6 { margin-bottom:24px; }
.mb-8 { margin-bottom:32px; }
.gap { gap:24px; }
.highlight { color:var(--gold); font-weight:600; }
.divider { border:none; border-top:1px solid var(--border-2); margin:40px 0; }
.bg-2 { background:var(--bg-2); }
.text-sm { font-size:.88rem; }
.text-xs { font-size:.78rem; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .footer__grid { grid-template-columns:1fr 1fr; gap:28px; }
  .hero__inner { gap:36px; }
}
@media (max-width:860px) {
  .burger { display: flex; }
  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

  .header__inner { position: relative; flex-wrap: nowrap; padding: 12px 20px; justify-content: space-between; height:auto; gap:12px; }
  .logo { margin-right: 0; }
  .header__actions { margin-left: 0; }
  .nav { 
    position: absolute; 
    top: 68px; 
    left: 0; 
    right: 0; 
    background: rgba(8, 8, 18, 0.98); 
    flex-direction: column; 
    align-items: center; 
    padding: 20px 0; 
    gap: 15px; 
    border-bottom: 1px solid var(--border-2); 
    box-shadow: var(--shadow-lg); 
    transform: translateY(-150%); 
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.3s ease-in-out; 
    z-index: 98; 
  }
  .nav.open { 
    transform: translateY(0); 
    opacity: 1; 
    visibility: visible; 
  }
  .nav a { font-size: 1.1rem; padding: 10px 20px; width: 100%; text-align: center; }
  .nav li { width: 100%; }

}
@media (max-width:768px) {
  .hero__inner { grid-template-columns:1fr; gap:32px; text-align:center; }
  .hero__title { font-size:clamp(1.6rem, 5vw, 2.2rem); }
  .hero__desc { margin:0 auto 24px; font-size:0.95rem; }
  .hero__actions { justify-content:center; }
  .hero__card { display:none; }
  .hero { padding:40px 0 60px; }
  .grid-2 { grid-template-columns:1fr; }
  .grid-3 { grid-template-columns:1fr 1fr; }
  .section { padding:48px 0; }
  .cta-banner { padding:32px 20px; }
  .footer__grid { grid-template-columns:1fr 1fr; gap:32px; }
  .trust-bar__inner { padding:8px 0; gap:12px; }
  .trust-sep { display:none; }
}
@media (max-width:480px) {
  .grid-3 { grid-template-columns:1fr; }
  .game-grid { grid-template-columns:1fr 1fr; }
  .games-grid { grid-template-columns:1fr 1fr; }
  .game-card__meta, .game-card__provider { font-size: 0.65rem; }
  .game-card__name { font-size: 0.8rem; }
  .footer__grid { grid-template-columns:1fr; gap:24px; }
  .hero__actions { flex-direction:column; align-items:center; width:100%; }
  .hero__actions .btn { width:100%; justify-content:center; }
  .header__inner { padding:10px; }
  .logo__text { font-size:1.3rem; }
  .logo__icon { width:32px; height:32px; font-size:1.1rem; }
  .btn-sm { font-size:0.75rem; padding:6px 12px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes pulse-gold {
  0%,100% { box-shadow:0 0 0 0 rgba(255,215,0,0); }
  50%      { box-shadow:0 0 0 8px rgba(255,215,0,0.08); }
}
@keyframes shimmer-line {
  0%   { transform:translateX(-100%); }
  100% { transform:translateX(100%); }
}
.animate-in { animation:fadeUp .55s ease forwards; }
.btn-primary { animation:none; }
.btn-primary:focus { animation:pulse-gold 1.5s ease; }


/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 18, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid var(--border-2);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  padding: 12px 20px;
  box-sizing: border-box;
}
.mobile-cta .btn {
  display: flex !important;
  width: 100%;
  margin: 0;
  justify-content: center;
  font-size: 1.1rem;
  padding: 14px 20px;
  box-sizing: border-box !important;
}
@media (max-width: 860px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 74px; } /* Prevent footer from being hidden behind CTA */
  .header__actions .btn-primary { display: none; } /* Hide the header button on mobile to save space */
}

/* Contextual Internal Links */
.ctx-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,215,0,0.5);
  transition: all 0.2s ease;
  font-weight: 500;
}
.ctx-link:hover {
  border-bottom: 1px solid var(--gold);
  text-shadow: 0 0 8px rgba(255,215,0,0.3);
}
