/* ============================================
   SureWin Malaysia - Main Stylesheet
   Dark Casino Theme | Gold Accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Noto+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --gold: #FFD700;
  --gold-light: #FFE566;
  --gold-dark: #C9A227;
  --red: #E53E3E;
  --bg-dark: #0b0c10;
  --bg-card: #14151f;
  --bg-nav: #0d0e16;
  --bg-section: #111218;
  --border: rgba(255,215,0,0.15);
  --text: #e8e9f0;
  --text-muted: #8a8b9a;
  --nav-height: 70px;
  --topbar-height: 36px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --glow: 0 0 20px rgba(255,215,0,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5 {
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ── TOP BAR ────────────────────────────── */
.topbar {
  background: #08090e;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,215,0,0.08);
  font-size: 12px;
  color: var(--text-muted);
  position: relative;
  z-index: 200;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-left a { color: var(--text-muted); font-size: 12px; display: flex; align-items: center; gap: 5px; }
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: flex; gap: 8px; }
.lang-switcher a {
  color: var(--text-muted);
  font-size: 11px;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
}
.lang-switcher a.active, .lang-switcher a:hover { color: var(--gold); border-color: var(--gold); }

/* ── NAVIGATION ─────────────────────────── */
.navbar {
  background: var(--bg-nav);
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid rgba(255,215,0,0.2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.navbar .container-wide { display: flex; align-items: center; height: 100%; gap: 20px; }

.nav-logo { flex-shrink: 0; }
.nav-logo img { height: 45px; width: auto; object-fit: contain; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2px;
  flex: 1;
  align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  height: var(--nav-height);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-menu > li > a .arrow { font-size: 9px; transition: transform 0.2s; }
.nav-menu > li:hover > a .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #131421;
  min-width: 200px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s;
  list-style: none;
  z-index: 200;
}
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dropdown li a:hover { color: var(--gold); background: rgba(255,215,0,0.06); }
.dropdown li:last-child a { border-bottom: none; }

.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

.btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 22px; border-radius: var(--radius); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.5px; cursor: pointer; transition: all 0.2s; text-transform: uppercase; white-space: nowrap; border: none; }
.btn-login { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-login:hover { background: rgba(255,215,0,0.1); color: var(--gold); }
.btn-register { background: var(--gold); color: #0b0c10; }
.btn-register:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--glow); }
.btn-primary { background: var(--gold); color: #0b0c10; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--glow); }
.btn-outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: rgba(255,215,0,0.1); }
.btn-lg { padding: 13px 34px; font-size: 16px; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #c53030; transform: translateY(-1px); }

/* Mobile menu toggle */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }

/* ── HERO SLIDER ────────────────────────── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #08090e;
  height: 480px;
}
@media (max-width: 768px) { .hero-slider { height: 260px; } }

.slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide a { display: block; width: 100%; height: 100%; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  display: flex;
  align-items: center;
  padding: 60px;
}
.slide-content { max-width: 500px; }
.slide-tag { display: inline-block; background: var(--gold); color: #000; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 3px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; font-family: 'Rajdhani', sans-serif; }
.slide-title { font-size: clamp(28px, 4vw, 52px); font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.1; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.slide-title span { color: var(--gold); }
.slide-desc { font-size: 15px; color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.slide-btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  padding: 12px 32px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.slide-btn:hover { background: var(--gold-light); transform: translateY(-2px); color: #000; }

.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; }
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1.5px solid rgba(255,215,0,0.4);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  transition: all 0.2s;
}
.slider-arrow:hover { background: rgba(255,215,0,0.2); border-color: var(--gold); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

/* ── MARQUEE / TICKER ───────────────────── */
.ticker-bar {
  background: #0d0e16;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  overflow: hidden;
}
.ticker-inner { display: flex; align-items: center; gap: 0; }
.ticker-label { background: var(--gold); color: #000; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 12px; padding: 3px 12px; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; flex-shrink: 0; }
.ticker-track { overflow: hidden; flex: 1; }
.ticker-content { display: flex; gap: 40px; animation: ticker 30s linear infinite; white-space: nowrap; padding-left: 20px; }
.ticker-content span { font-size: 13px; color: var(--text-muted); }
.ticker-content span strong { color: var(--gold); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── SECTIONS ───────────────────────────── */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-section); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: clamp(26px, 4vw, 38px); color: #fff; margin-bottom: 10px; }
.section-header h2 span { color: var(--gold); }
.section-header p { color: var(--text-muted); font-size: 15px; max-width: 600px; margin: 0 auto; }
.section-header .section-line { width: 60px; height: 3px; background: var(--gold); margin: 12px auto 0; border-radius: 2px; }

/* ── GAME CATEGORIES ────────────────────── */
.game-categories { padding: 50px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(255,215,0,0.15); border-color: rgba(255,215,0,0.4); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.category-card:hover img { transform: scale(1.05); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.category-overlay h3 { font-size: 18px; color: #fff; margin-bottom: 4px; }
.category-overlay span { font-size: 12px; color: var(--gold); }
.category-badge { position: absolute; top: 10px; right: 10px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px; font-family: 'Rajdhani', sans-serif; text-transform: uppercase; }
.category-badge.hot { background: var(--gold); color: #000; }

/* ── FEATURES / WHY US ──────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover { border-color: rgba(255,215,0,0.5); transform: translateY(-3px); box-shadow: var(--glow); }
.feature-icon { font-size: 40px; margin-bottom: 14px; display: block; }
.feature-card h3 { font-size: 18px; color: var(--gold); margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── PROMO BANNER ───────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, #1a0a00 0%, #0d0014 50%, #001a14 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.promo-content h2 { font-size: 32px; color: var(--gold); margin-bottom: 8px; }
.promo-content p { color: var(--text-muted); font-size: 14px; }
@media (max-width: 640px) { .promo-banner { flex-direction: column; text-align: center; padding: 30px 20px; } }

/* ── GAMES GRID (sub-pages) ─────────────── */
.games-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .games-grid { grid-template-columns: 1fr; } }

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.game-card:hover { border-color: rgba(255,215,0,0.5); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.game-card-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.game-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.game-card:hover .game-card-img img { transform: scale(1.05); }
.game-card-body { padding: 20px; }
.game-card-body h3 { font-size: 20px; color: #fff; margin-bottom: 8px; }
.game-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.game-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.game-tag { background: rgba(255,215,0,0.1); color: var(--gold); font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 600; }

/* ── PAGE HERO ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0d0e18 0%, #131421 100%);
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--gold); }
.page-hero h1 { font-size: clamp(28px, 4vw, 48px); color: #fff; margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 15px; color: var(--text-muted); max-width: 700px; line-height: 1.7; }

/* ── PROVIDERS LOGOS ────────────────────── */
.providers-strip { padding: 40px 0; background: var(--bg-section); overflow: hidden; }
.providers-track {
  display: flex;
  gap: 30px;
  align-items: center;
  animation: providerScroll 25s linear infinite;
}
.providers-track:hover { animation-play-state: paused; }
.provider-logo {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 22px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  white-space: nowrap;
  transition: all 0.3s;
  cursor: default;
}
.provider-logo:hover { color: var(--gold); border-color: rgba(255,215,0,0.4); }
@keyframes providerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── FAQ ────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  color: #fff;
  background: var(--bg-card);
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(255,215,0,0.05); }
.faq-question.open { color: var(--gold); }
.faq-question .icon { font-size: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-question.open .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; font-size: 14px; color: var(--text-muted); line-height: 1.7; background: var(--bg-card); }
.faq-answer.open { max-height: 400px; padding: 16px 22px; }

/* ── CONTENT PROSE ──────────────────────── */
.prose { max-width: 860px; }
.prose h2 { font-size: 26px; color: var(--gold); margin: 36px 0 14px; }
.prose h3 { font-size: 20px; color: #fff; margin: 26px 0 10px; }
.prose p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 14px; }
.prose ul, .prose ol { color: var(--text-muted); font-size: 14px; padding-left: 22px; margin-bottom: 14px; }
.prose li { margin-bottom: 6px; line-height: 1.7; }
.prose strong { color: var(--text); }
.prose a { color: var(--gold); }

/* ── PAYMENT ICONS ──────────────────────── */
.payments-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; padding: 30px 0; }
.payment-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 18px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── STATS ROW ──────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 640px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item { background: var(--bg-card); padding: 28px 20px; text-align: center; }
.stat-number { font-family: 'Rajdhani', sans-serif; font-size: 36px; font-weight: 700; color: var(--gold); display: block; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── PROMOTIONS ─────────────────────────── */
.promos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .promos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .promos-grid { grid-template-columns: 1fr; } }

.promo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.promo-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,0.4); box-shadow: var(--glow); }
.promo-card-header { background: linear-gradient(135deg, #1a0d00, #200015); padding: 30px 22px; text-align: center; position: relative; }
.promo-card-header .promo-pct { font-family: 'Rajdhani', sans-serif; font-size: 56px; font-weight: 700; color: var(--gold); line-height: 1; }
.promo-card-header .promo-type { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.promo-card-body { padding: 20px 22px; }
.promo-card-body h3 { font-size: 20px; color: #fff; margin-bottom: 8px; }
.promo-card-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.promo-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.promo-meta span { font-size: 12px; color: var(--text-muted); display: flex; gap: 6px; }
.promo-meta span strong { color: var(--text); }

/* ── FOOTER ─────────────────────────────── */
footer {
  background: #080810;
  border-top: 1px solid var(--border);
  padding: 50px 0 0;
}
.footer-top { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); background: rgba(255,215,0,0.1); }

.footer-col h4 { font-size: 14px; font-family: 'Rajdhani', sans-serif; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--gold); }

.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px 0; border-top: 1px solid var(--border); align-items: center; }
.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 14px;
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

/* ── RESPONSIVE NAV ─────────────────────── */
@media (max-width: 1024px) {
  .nav-menu { display: none; flex-direction: column; position: fixed; top: calc(var(--topbar-height) + var(--nav-height)); left: 0; right: 0; background: var(--bg-nav); border-top: 1px solid var(--border); padding: 10px 0; z-index: 99; max-height: calc(100vh - var(--topbar-height) - var(--nav-height)); overflow-y: auto; }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { height: auto; padding: 14px 20px; border-bottom: 1px solid var(--border); }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-top: none; background: #0d0e18; max-height: 0; overflow: hidden; transition: max-height 0.3s; }
  .nav-menu > li.open .dropdown { max-height: 500px; }
  .dropdown li a { padding: 10px 36px; }
  .hamburger { display: flex; }
  .nav-actions { margin-left: auto; }
  .btn { padding: 7px 14px; font-size: 12px; }
}

@media (max-width: 640px) {
  .slide-overlay { padding: 20px; }
  .slide-title { font-size: 22px; }
  .slide-desc { display: none; }
}

/* ── UTILITIES ──────────────────────────── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }

/* ── SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255,215,0,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,215,0,0.6); }

/* ── BACK TO TOP ────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 50;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { transform: translateY(-3px); box-shadow: var(--glow); }

/* ── TABLE ──────────────────────────────── */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.info-table th { background: rgba(255,215,0,0.08); color: var(--gold); font-family: 'Rajdhani', sans-serif; font-size: 15px; }
.info-table td { color: var(--text-muted); }
.info-table tr:hover td { background: rgba(255,255,255,0.02); }
