/* Mellstroy Casino — Main Stylesheet
   Palette: deep purple + gold + neon accents
============================================================ */

@font-face { font-family: 'Geologica'; src: url('/fonts/Geologica-Light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Geologica'; src: url('/fonts/Geologica-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Geologica'; src: url('/fonts/Geologica-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Geologica'; src: url('/fonts/Geologica-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Geologica'; src: url('/fonts/Geologica-ExtraBold.woff2') format('woff2'); font-weight: 800; font-display: swap; }

:root {
  --bg-main:      #0d0a1e;
  --bg-deep:      #0a081a;
  --bg-panel:     #1a1235;
  --bg-card:      #261850;
  --bg-card-2:    #2f1f5e;
  --accent:       #fbbf24;
  --accent-2:     #f59e0b;
  --accent-soft:  rgba(251, 191, 36, .15);
  --purple:       #8b5cf6;
  --purple-2:     #a78bfa;
  --purple-soft:  rgba(139, 92, 246, .2);
  --pink:         #c084fc;
  --blue:         #3b82f6;
  --border:       #3d2a7a;
  --border-soft:  rgba(255,255,255,.06);
  --text:         #ffffff;
  --text-muted:   #b8a6e8;
  --text-dim:     #7c6ba8;
  --success:      #4ade80;
  --danger:       #ef4444;
  --br:           10px;
  --br-lg:        18px;
  --br-xl:        24px;
  --shadow-purple: 0 12px 32px rgba(139,92,246,.35);
  --shadow-gold:   0 8px 24px rgba(251,191,36,.35);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  --gradient-neon: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #06b6d4 100%);
  --gradient-bg: linear-gradient(135deg, #0d0a1e 0%, #1a0d2e 40%, #2d1b3d 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Geologica', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-main);
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(139,92,246,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(59,130,246,.12) 0%, transparent 50%),
    linear-gradient(180deg, #0d0a1e 0%, #0a081a 100%);
  background-attachment: fixed;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--purple); color: white; }

/* ============================================================
   LAYOUT
============================================================ */
.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 20px;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: linear-gradient(180deg, rgba(26,18,53,.92) 0%, rgba(26,18,53,.78) 100%);
  backdrop-filter: blur(14px);
  border-radius: var(--br-lg);
  border: 1px solid rgba(139,92,246,.25);
  position: sticky;
  top: 12px;
  z-index: 50;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  height: 48px;
  width: 48px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(139,92,246,.45);
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-w1 {
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: 1px;
}
.logo-w2 {
  font-weight: 600;
  font-size: 12px;
  color: var(--purple-2);
  letter-spacing: 2px;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-main {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-main a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color .2s;
  position: relative;
}
.nav-main a:hover { color: var(--accent); }
.nav-main a.active { color: var(--accent); }
.nav-main a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.header-actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-login {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--purple);
}
.btn-login:hover { background: var(--purple-soft); border-color: var(--purple-2); }

.btn-register {
  background: var(--gradient-gold);
  color: #1a0d2e;
  box-shadow: var(--shadow-gold);
}
.btn-register:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(251,191,36,.5); }

.btn-cta {
  background: var(--gradient-gold);
  color: #1a0d2e;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: var(--shadow-gold);
  border-radius: 50px;
}
.btn-cta:hover { transform: translateY(-2px); }

.btn-secondary {
  background: rgba(139,92,246,.18);
  color: var(--text);
  border: 1.5px solid var(--purple);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
}
.btn-secondary:hover { background: var(--purple-soft); transform: translateY(-2px); }

/* TOP BAR / TICKER */
.top-bar {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item strong { color: var(--accent); font-weight: 700; }
.top-bar-item .ticker-icon { font-size: 16px; }

/* ============================================================
   HERO (Pinco-style structure with Mellstroy aesthetics)
============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b3d 50%, #1e1b4b 100%);
  border-radius: var(--br-xl);
  padding: 56px 56px;
  border: 1px solid rgba(139,92,246,.3);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  margin-top: 18px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 30%, rgba(139,92,246,.25) 0%, transparent 40%),
    radial-gradient(circle at 10% 70%, rgba(251,191,36,.12) 0%, transparent 45%);
  pointer-events: none;
}

.hero-text { position: relative; z-index: 2; }

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 18px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title strong {
  color: var(--purple-2);
  font-weight: 800;
}

.hero-description {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--br-lg);
  filter: drop-shadow(0 16px 40px rgba(139,92,246,.5));
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* BONUS BAR (under hero, Pinco-style) */
.bonus-bar {
  display: grid;
  grid-template-columns: 1.5fr auto auto auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 50%, #4c1d95 100%);
  border-radius: var(--br-xl);
  padding: 28px 40px;
  margin-top: -22px;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(139,92,246,.4);
  border: 2px solid rgba(196,181,252,.3);
}
.bonus-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,.06) 50%, transparent 100%);
  border-radius: var(--br-xl);
  pointer-events: none;
}
.bonus-bar-text { color: #fff; z-index: 1; }
.bonus-bar-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.85);
  margin-bottom: 4px;
}
.bonus-bar-value {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.bonus-bar-value small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-top: 6px;
}
.bonus-bar-fs {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent);
  z-index: 1;
}
.bonus-bar-fs small { display: block; font-size: 12px; color: rgba(255,255,255,.8); font-weight: 600; }
.bonus-bar .btn-cta { z-index: 1; }

/* STATS ROW */
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding: 0 20px;
}
.stat-item { text-align: center; }
.stat-value {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #fbbf24 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ============================================================
   SECTION HEADERS
============================================================ */
.section {
  margin-top: 48px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  gap: 14px;
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-title-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--purple-soft);
  border: 1px solid var(--purple);
  border-radius: 10px;
  font-size: 18px;
}
.view-all {
  color: var(--purple-2);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: .2s;
}
.view-all:hover { color: var(--accent); transform: translateX(3px); }

/* ============================================================
   GAMES GRID
============================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.game-card {
  position: relative;
  background: linear-gradient(180deg, #261850 0%, #1a1235 100%);
  border-radius: var(--br);
  overflow: hidden;
  transition: all .25s ease;
  border: 1px solid rgba(139,92,246,.25);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(139,92,246,.4);
}
.game-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #1a1235 0%, #261850 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.game-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(139,92,246,.2) 0%, transparent 60%);
}
.game-thumb-emoji { z-index: 1; filter: drop-shadow(0 4px 14px rgba(0,0,0,.5)); }
.game-name {
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text);
}
.game-provider {
  padding: 0 8px 10px;
  font-size: 10px;
  text-align: center;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.game-badge.hot { background: linear-gradient(135deg, #ef4444, #dc2626); color: white; }
.game-badge.new { background: var(--gradient-gold); color: #1a0d2e; }
.game-badge.live { background: linear-gradient(135deg, #06b6d4, #3b82f6); color: white; }

/* ============================================================
   PROMO BANNERS
============================================================ */
.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.promo-card {
  position: relative;
  border-radius: var(--br-lg);
  padding: 28px 32px;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(139,92,246,.3);
  background: linear-gradient(135deg, #1a0d2e 0%, #2d1b3d 100%);
}
.promo-card.with-bg-img {
  background-size: cover;
  background-position: center;
}
.promo-card.with-bg-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,10,30,.85) 0%, rgba(13,10,30,.5) 60%, transparent 100%);
  pointer-events: none;
}
.promo-card-inner { position: relative; z-index: 2; }
.promo-label {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid rgba(251,191,36,.4);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.promo-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.promo-title em { font-style: normal; color: var(--accent); }
.promo-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.promo-card .btn { align-self: flex-start; }

/* MIRROR / LIVE BANNER */
.live-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  padding: 16px 28px;
  border-radius: var(--br);
  margin-top: 24px;
  border: 1px solid rgba(220,38,38,.5);
  overflow: hidden;
  position: relative;
}
.live-banner::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: liveShine 3s ease-in-out infinite;
}
@keyframes liveShine { 0% { left: -100%; } 100% { left: 100%; } }
.live-info { display: flex; align-items: center; gap: 12px; z-index: 1; }
.live-dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  50% { opacity: .6; transform: scale(1.3); box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.live-text { color: #fff; font-weight: 700; font-size: 14px; z-index: 1; }
.live-btn {
  background: rgba(255,255,255,.18);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.3);
  font-weight: 700;
  font-size: 13px;
  z-index: 1;
  transition: .2s;
}
.live-btn:hover { background: rgba(255,255,255,.3); }

/* ============================================================
   SEO CONTENT
============================================================ */
.seo-content {
  background: linear-gradient(180deg, rgba(26,18,53,.7) 0%, rgba(13,10,30,.7) 100%);
  padding: 40px;
  border-radius: var(--br-lg);
  margin-top: 36px;
  line-height: 1.75;
  color: #c4b5fd;
  border: 1px solid rgba(139,92,246,.2);
}
.seo-content h1 {
  color: var(--text);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.seo-content h2 {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  margin: 32px 0 14px;
  line-height: 1.25;
  position: relative;
  padding-left: 18px;
}
.seo-content h2::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}
.seo-content h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  margin: 22px 0 10px;
}
.seo-content p { margin-bottom: 14px; color: #d1c4f5; }
.seo-content strong { color: var(--accent); font-weight: 700; }
.seo-content b { color: var(--text); font-weight: 700; }
.seo-content em { color: var(--purple-2); font-style: italic; }

.seo-content ul, .seo-content ol { margin: 12px 0 16px 0; color: #d1c4f5; }
.seo-content ul li, .seo-content ol li { margin-bottom: 8px; padding-left: 4px; }
.seo-content ul li { list-style: none; position: relative; padding-left: 26px; }
.seo-content ul li::before {
  content: '💎';
  position: absolute;
  left: 0; top: 0;
  font-size: 12px;
}
.seo-content ol { list-style: none; counter-reset: item; }
.seo-content ol li {
  counter-increment: item;
  position: relative;
  padding-left: 36px;
}
.seo-content ol li::before {
  content: counter(item);
  position: absolute;
  left: 0; top: 1px;
  background: var(--gradient-gold);
  color: #1a0d2e;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  margin: 18px 0;
  border-radius: var(--br);
  border: 1px solid var(--border);
  background: var(--bg-deep);
}
.seo-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  color: var(--text);
  min-width: 500px;
}
.seo-table th, .seo-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}
.seo-table th {
  background: var(--bg-card);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.6px;
}
.seo-table tr:last-child td { border-bottom: none; }
.seo-table tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
.seo-table tbody tr:hover { background: rgba(139,92,246,.08); }
.seo-table td:first-child { font-weight: 600; color: var(--text); }

/* ============================================================
   FAQ
============================================================ */
.faq {
  background: linear-gradient(180deg, rgba(26,18,53,.7) 0%, rgba(13,10,30,.7) 100%);
  padding: 32px;
  border-radius: var(--br-lg);
  margin-top: 36px;
  border: 1px solid rgba(139,92,246,.2);
}
.faq-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-item {
  border-bottom: 1px solid rgba(139,92,246,.18);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 18px 0;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-q::after {
  content: '+';
  font-size: 28px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: #d1c4f5;
}
.faq-item.open .faq-a { max-height: 700px; padding-bottom: 18px; }
.faq-a p { font-size: 14px; line-height: 1.7; }

/* ============================================================
   REVIEWS
============================================================ */
.reviews {
  background: linear-gradient(180deg, rgba(26,18,53,.7) 0%, rgba(13,10,30,.7) 100%);
  padding: 32px;
  border-radius: var(--br-lg);
  margin-top: 36px;
  border: 1px solid rgba(139,92,246,.2);
}
.reviews-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}
.review-card {
  background: linear-gradient(180deg, #261850 0%, #1a1235 100%);
  padding: 22px;
  border-radius: var(--br);
  border: 1px solid rgba(139,92,246,.25);
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gradient-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
  font-size: 14px;
}
.review-stars { color: var(--accent); font-size: 14px; letter-spacing: 1px; }
.review-text { color: #d1c4f5; font-size: 13.5px; line-height: 1.6; margin-bottom: 10px; }
.review-date { color: var(--text-dim); font-size: 11px; }

/* ============================================================
   DISCLAIMER
============================================================ */
.disclaimer {
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(139,92,246,.2);
  padding: 22px 28px;
  border-radius: var(--br);
  margin-top: 28px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.disclaimer strong { color: var(--accent); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: linear-gradient(180deg, rgba(13,10,30,.9) 0%, rgba(10,8,26,1) 100%);
  padding: 40px 32px 24px;
  border-radius: var(--br-lg);
  margin-top: 36px;
  font-size: 13px;
  color: var(--text-muted);
  border: 1px solid rgba(139,92,246,.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 26px;
}
.footer-col h4 {
  color: var(--text);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.footer-about p { line-height: 1.65; margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); transition: .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.socials { display: flex; gap: 8px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: .2s;
  border: 1px solid rgba(139,92,246,.3);
}
.socials a:hover { background: var(--accent); color: #1a0d2e; transform: translateY(-2px); }
.payments-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0;
}
.payments-row span {
  background: var(--bg-card);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid rgba(139,92,246,.2);
}
.footer-bottom {
  border-top: 1px solid rgba(139,92,246,.18);
  padding-top: 18px;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}
.footer-bottom .age { color: var(--accent); font-weight: 800; }

/* Utility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #1a0d2e;
  padding: 8px 16px;
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus { left: 0; }
