/* ═══════════════════════════════════════════════════
   SLOTSPICE.IO — Delad Stilmall (Svensk version)
   Blå/silver tema – mörkare marinblå bakgrund
   ═══════════════════════════════════════════════════ */

/* ── RESET & VARIABLER ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #030F1C;
  --card:      #071E3D;
  --ticker:    #0A2A50;
  --blue:      #1EB8FF;
  --blue-lt:   #63D4FF;
  --dark-1:    #071830;
  --dark-2:    #0D2A5A;
  --dark-3:    #1A4090;
  --accent:    #1EB8FF;
  --gold:      #FFD700;
  --cream:     #CCE8FF;
  --green:     #4DF981;
  --red:       #FF1D4C;
  --muted:     #7CA8CC;
  --white:     #ffffff;
  --fh:        'Lilita One', cursive;
  --fb:        'Mukta', sans-serif;
  --max:       1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--fh); line-height: 1.15; }

/* ── LAYOUT ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.section-label {
  font-family: var(--fh);
  font-size: 13px; letter-spacing: 3px;
  color: var(--blue); text-transform: uppercase;
  text-align: center; margin-bottom: 10px;
}
.section-title {
  font-family: var(--fh);
  font-size: clamp(26px, 4vw, 50px);
  text-align: center; color: var(--white);
  margin-bottom: 48px;
}
.section-title span { color: var(--gold); }
.section-cta { text-align: center; margin-top: 48px; }

/* ── KNAPPAR ── */
.btn {
  display: inline-block;
  font-family: var(--fh); font-size: 18px;
  padding: 14px 36px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .5px; color: var(--white);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.btn-red    { background: linear-gradient(135deg, #FF1D4C, #ff5500); }
.btn-blue   { background: linear-gradient(135deg, #0D7FCC, var(--blue)); }
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover { border-color: var(--white); }
.btn-optin {
  display: inline-block; padding: 10px 24px; border-radius: 50px;
  background: rgba(30,184,255,.15);
  border: 1px solid var(--blue);
  color: var(--white); font-family: var(--fh); font-size: 14px;
  transition: background .2s;
}
.btn-optin:hover { background: rgba(30,184,255,.4); }

/* ── NAVIGERING ── */
.site-nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(3,15,28,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30,184,255,.18);
  box-shadow: 0 1px 24px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex; align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px; height: 70px; gap: 16px;
}
.nav-logo img { height: 44px; }
.nav-links {
  display: flex; list-style: none;
  flex: 1; margin: 0; padding: 0; gap: 2px;
}
.nav-links li a {
  display: block; padding: 8px 13px;
  border-radius: 8px;
  color: rgba(255,255,255,.6);
  font-family: var(--fb); font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: .8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.nav-links li a:hover { color: var(--white); background: rgba(30,184,255,.1); }
.nav-links li a.active {
  color: var(--blue);
  background: rgba(30,184,255,.08);
  border-bottom-color: var(--blue);
}
.nav-ctas { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-nav-login {
  font-family: var(--fh); font-size: 14px;
  padding: 9px 20px; border-radius: 50px;
  border: 2px solid rgba(30,184,255,.35);
  background: transparent; color: var(--white);
  transition: border-color .2s;
}
.btn-nav-login:hover { border-color: var(--blue); }
.btn-nav-join {
  font-family: var(--fh); font-size: 14px;
  padding: 9px 20px; border-radius: 50px;
  background: linear-gradient(135deg, #FF1D4C, #ff5500);
  color: var(--white); border: none;
  transition: box-shadow .2s, transform .2s;
}
.btn-nav-join:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,29,76,.45); }
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 6px;
  flex-direction: column; gap: 5px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO (startsida) – centrerad layout ── */
.hero {
  position: relative; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 80px 24px;
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,15,28,.88) 0%, rgba(3,15,28,.72) 50%, rgba(3,15,28,.92) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-family: var(--fh); font-size: 14px;
  letter-spacing: 3px; color: var(--blue);
  text-transform: uppercase; margin-bottom: 14px;
}
.hero-h1 { margin-bottom: 8px; }
.hero-brand {
  display: block; font-family: var(--fh);
  font-size: clamp(36px, 5.5vw, 68px);
  color: var(--white); margin-bottom: 8px;
}
.hero-offer {
  display: block; font-family: var(--fh);
  font-size: clamp(28px, 5vw, 58px);
  color: var(--gold); text-shadow: 0 2px 24px rgba(0,0,0,.4);
  line-height: 1.05; margin-bottom: 8px;
}
.hero-sub2 {
  font-family: var(--fh);
  font-size: clamp(20px, 3.5vw, 40px);
  color: var(--white); margin-bottom: 36px;
}
.hero-cta {
  display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap; margin-bottom: 14px;
  justify-content: center;
}
.hero-dis { font-size: 13px; color: rgba(255,255,255,.5); }
.hero-dis a { color: var(--blue-lt); }

/* ── SIDA-HERO (inre sidor) ── */
.page-hero {
  padding: 72px 24px 56px; text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #061528 0%, var(--bg) 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(30,184,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(30px, 5vw, 60px);
  color: var(--white); margin-bottom: 16px;
}
.page-hero .lead {
  font-size: 18px; color: var(--muted);
  max-width: 680px; margin: 0 auto 32px; line-height: 1.7;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; font-size: 13px; color: rgba(255,255,255,.45);
  margin-bottom: 24px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue-lt); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { color: rgba(255,255,255,.25); }

/* ── VINNARTICKER ── */
.ticker-wrap { background: var(--dark-2); padding: 14px 0; overflow: hidden; }
.ticker-track {
  display: flex; gap: 14px;
  animation: ticker-go 35s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-go {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.t-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--ticker); border-radius: 26px;
  padding: 8px 16px 8px 8px; flex-shrink: 0; min-width: 185px;
  border: 1px solid rgba(30,184,255,.15);
}
.t-av {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 17px; flex-shrink: 0;
}
.t-info { display: flex; flex-direction: column; gap: 3px; }
.t-name  { color: var(--cream); font-family: var(--fh); font-size: 15px; line-height: 1; }
.t-amt   { color: var(--green); font-weight: 700; font-size: 14px; line-height: 1; }
.t-time  { color: rgba(255,255,255,.6); font-size: 12px; line-height: 1; }

/* ── FEATURE-KORT ── */
.features { padding: 72px 24px; background: var(--bg); }
.feat-section-title {
  font-family: var(--fh);
  font-size: clamp(22px, 3vw, 36px);
  text-align: center; color: var(--white);
  margin-bottom: 40px;
}
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: var(--max); margin: 0 auto;
}
.feat-card {
  background: rgba(7,30,61,.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 44px 32px; text-align: center;
  border: 1px solid rgba(30,184,255,.12);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.feat-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(30,184,255,.12);
}
.feat-icon {
  width: 68px; height: 68px; margin: 0 auto 24px;
  background: linear-gradient(135deg, #0D7FCC, var(--blue));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(30,184,255,.25);
}
.feat-title { font-size: 20px; color: var(--white); margin-bottom: 14px; }
.feat-desc  { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ── BONUSSRULLNING ── */
.bonuses { padding: 80px 0; background: rgba(7,30,61,.4); }
.bonuses .wrap { margin-bottom: 32px; }
.bonus-scroll {
  display: flex; gap: 20px; overflow-x: auto;
  padding: 0 24px 16px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bonus-scroll::-webkit-scrollbar { display: none; }
.bonus-card {
  flex-shrink: 0; width: 270px; scroll-snap-align: start;
  border-radius: 22px; overflow: hidden;
  background: var(--card); border: 1px solid rgba(30,184,255,.18);
  transition: transform .25s, box-shadow .25s;
}
.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(30,184,255,.15);
}
.bonus-card img { width: 100%; height: 210px; object-fit: cover; display: block; }

/* ── JACKPOT ── */
.jackpot {
  padding: 80px 24px;
  background: linear-gradient(150deg, #030D1E 0%, var(--dark-1) 25%, var(--dark-2) 55%, #030D1E 100%);
  position: relative; overflow: hidden;
}
.jackpot::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(30,184,255,.2) 0%, transparent 65%);
  pointer-events: none;
}
.jp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 960px; margin: 0 auto 40px;
  position: relative; z-index: 1;
}
.jp-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(30,184,255,.2);
  border-radius: 26px; padding: 44px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s;
}
.jp-card:hover { transform: translateY(-4px); }
.jp-card.epic {
  background: rgba(30,184,255,.1);
  border-color: var(--blue); transform: scale(1.05);
  box-shadow: 0 0 48px rgba(30,184,255,.2);
}
.jp-card.epic:hover { transform: scale(1.05) translateY(-4px); }
.jp-badge {
  display: inline-block; padding: 4px 14px; border-radius: 20px;
  background: rgba(255,255,255,.08); font-size: 11px; letter-spacing: 2px;
  color: rgba(255,255,255,.6); text-transform: uppercase;
  margin-bottom: 12px; font-family: var(--fb); font-weight: 700;
}
.jp-name { font-size: 22px; color: var(--white); margin-bottom: 16px; }
.jp-amt {
  font-family: var(--fh);
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--gold); text-shadow: 0 0 22px rgba(255,215,0,.4);
  margin-bottom: 14px; display: block;
}
.jp-desc { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 22px; }
.jp-body {
  max-width: 680px; margin: 0 auto 44px;
  text-align: center; color: rgba(255,255,255,.75);
  font-size: 17px; line-height: 1.75;
  position: relative; z-index: 1;
}
.jp-cta { position: relative; z-index: 1; text-align: center; }

/* ── VIP ── */
.vip {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, #040E1A 100%);
  text-align: center;
}
.vip-desc { max-width: 560px; margin: 0 auto; color: var(--muted); font-size: 18px; line-height: 1.7; }

/* ── SPEL ── */
.games { padding: 80px 24px; background: rgba(7,30,61,.25); }
.games-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: var(--max); margin: 0 auto;
}
.g-card {
  border-radius: 22px; overflow: hidden;
  aspect-ratio: 1; position: relative; cursor: pointer;
  border: 1px solid rgba(30,184,255,.08);
  transition: border-color .25s;
}
.g-card:hover { border-color: rgba(30,184,255,.35); }
.g-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.g-card:hover img { transform: scale(1.07); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,15,28,.85) 0%, transparent 55%);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 20px; opacity: 0; transition: opacity .25s;
}
.g-card:hover .g-overlay { opacity: 1; }

/* ── UTBETALNINGAR ── */
.payouts { padding: 80px 24px; background: var(--bg); }
.pay-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: var(--max); margin: 0 auto;
}
.pay-kicker {
  font-size: 13px; letter-spacing: 3px;
  color: var(--blue); text-transform: uppercase;
  font-family: var(--fh); margin-bottom: 12px;
}
.pay-text h2 { font-size: clamp(28px, 4vw, 48px); color: var(--white); margin-bottom: 20px; }
.pay-text p  { color: var(--muted); font-size: 17px; line-height: 1.75; margin-bottom: 28px; }
.pay-block h3 { font-size: 22px; color: var(--white); margin-bottom: 10px; }
.pay-icon { text-align: center; }
.pay-icon img { max-width: 260px; width: 100%; }

/* ── SEO-INNEHÅLL ── */
.seo-content { padding: 80px 24px; background: rgba(7,30,61,.2); }
.seo-content .inner { max-width: 900px; margin: 0 auto; }
.seo-content h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--white); margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(30,184,255,.25);
}
.seo-content h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--blue-lt); margin: 36px 0 12px;
}
.seo-content p {
  color: rgba(255,255,255,.75); font-size: 16px;
  line-height: 1.85; margin-bottom: 16px;
}
.seo-content p a { color: var(--blue-lt); border-bottom: 1px solid rgba(30,184,255,.35); transition: color .2s; }
.seo-content p a:hover { color: var(--white); }
.seo-content ul { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.85; margin: 12px 0 20px 22px; }
.seo-content ul li { margin-bottom: 6px; }

/* ── FAQ ── */
.faq { padding: 80px 24px; background: rgba(7,30,61,.25); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(30,184,255,.15); }
.faq-q {
  display: flex; justify-content: space-between;
  align-items: center; padding: 24px 0; cursor: pointer;
  font-family: var(--fh); font-size: 18px; color: var(--white);
  gap: 16px; transition: color .2s; user-select: none;
}
.faq-q:hover { color: var(--blue-lt); }
.faq-icon {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  background: rgba(30,184,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 300; line-height: 1;
  transition: background .2s, transform .3s;
}
.faq-item.open .faq-icon { background: var(--blue); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; color: var(--muted); font-size: 15px; line-height: 1.8; }
.faq-a-in { padding: 0 0 24px; }
.faq-item.open .faq-a { max-height: 600px; }

/* ── SUPPORT CTA ── */
.support {
  padding: 80px 24px; text-align: center;
  background: linear-gradient(135deg, #041020 0%, #061830 100%);
}
.support .kicker {
  font-size: 13px; letter-spacing: 3px;
  color: var(--blue); text-transform: uppercase;
  font-family: var(--fh); margin-bottom: 12px;
}
.support h2 { font-size: clamp(24px, 4vw, 46px); color: var(--white); margin-bottom: 16px; }
.support p  { color: var(--muted); font-size: 17px; max-width: 480px; margin: 0 auto 40px; }

/* ── INRE SIDOR ── */
.content-section { padding: 64px 24px; }
.content-section .inner { max-width: 900px; margin: 0 auto; }
.content-section h2 {
  font-size: clamp(22px, 3vw, 36px);
  color: var(--white); margin: 48px 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(30,184,255,.2);
}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { font-size: clamp(17px, 2.5vw, 24px); color: var(--blue-lt); margin: 28px 0 10px; }
.content-section p  { color: rgba(255,255,255,.75); line-height: 1.85; margin-bottom: 16px; font-size: 16px; }
.content-section p a { color: var(--blue-lt); border-bottom: 1px solid rgba(30,184,255,.3); transition: color .2s; }
.content-section p a:hover { color: var(--white); }
.content-section ul, .content-section ol { color: rgba(255,255,255,.75); line-height: 1.85; margin: 12px 0 20px 24px; font-size: 16px; }
.content-section li { margin-bottom: 8px; }
.content-section table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; }
.content-section th {
  background: rgba(30,184,255,.15); color: var(--white);
  padding: 12px 16px; text-align: left; font-family: var(--fh);
  border-bottom: 2px solid rgba(30,184,255,.25);
}
.content-section td { padding: 12px 16px; color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.05); }
.content-section tr:hover td { background: rgba(30,184,255,.04); }

.info-box {
  background: rgba(30,184,255,.08); border: 1px solid rgba(30,184,255,.2);
  border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0;
  padding: 20px 24px; margin: 24px 0;
  color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.75;
}
.info-box strong { color: var(--white); }
.highlight-box {
  background: linear-gradient(135deg, rgba(30,184,255,.08), rgba(13,42,90,.3));
  border: 1px solid rgba(30,184,255,.2);
  border-radius: 16px; padding: 28px 32px; margin: 28px 0;
}
.highlight-box h3 { margin-top: 0; }

.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: var(--max); margin: 0 auto 48px;
}
.info-card {
  background: rgba(7,30,61,.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px; padding: 32px 24px;
  border: 1px solid rgba(30,184,255,.1); text-align: center;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(30,184,255,.1);
}
.info-card .ic-icon { font-size: 40px; margin-bottom: 16px; }
.info-card h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.info-card p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── SIDFOT ── */
footer {
  background: #010A15; padding: 56px 24px 36px;
  border-top: 1px solid rgba(30,184,255,.1);
}
.foot { max-width: var(--max); margin: 0 auto; }
.foot-nav {
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  justify-content: center; margin-bottom: 40px;
}
.foot-nav a {
  color: rgba(255,255,255,.45); font-size: 13px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  transition: color .2s;
}
.foot-nav a:hover { color: var(--blue-lt); }
.foot-trust {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 28px; padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 32px;
}
.foot-trust img { height: 36px; opacity: .65; transition: opacity .2s; }
.foot-trust img:hover { opacity: 1; }
.foot-legal {
  font-size: 13px; color: rgba(255,255,255,.35);
  line-height: 1.75; text-align: center;
  max-width: 880px; margin: 0 auto;
}
.foot-legal a { color: rgba(255,255,255,.5); }

/* ── RESPONSIV ── */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(3,15,28,.99);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(30,184,255,.15);
    gap: 2px;
  }
  .nav-links.open li a { padding: 12px 16px; font-size: 14px; }
}
@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .jp-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 40px; }
  .jp-card.epic { transform: none; }
  .jp-card.epic:hover { transform: translateY(-4px); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-inner { grid-template-columns: 1fr; gap: 40px; }
  .pay-icon { order: -1; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { min-height: 520px; }
  .hero-bg::after { background: rgba(3,15,28,.9); }
  .games-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .btn-nav-login { display: none; }
  .card-grid { grid-template-columns: 1fr; }
}
