/* =============================================
   MaharajaFunHub - Main Stylesheet
   Social Casino - For Entertainment Only
   ============================================= */

/* ---- Google Fonts (self-host via import) ---- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --gold: #D4A017;
  --gold-light: #FFD700;
  --gold-dark: #B8860B;
  --purple: #6B21A8;
  --purple-dark: #4A0080;
  --purple-light: #9333EA;
  --cream: #FDF6E3;
  --cream-dark: #F5E6C8;
  --white: #FFFFFF;
  --text-dark: #1A0A2E;
  --text-mid: #4A1080;
  --text-light: #7A4AAA;
  --red: #C62828;
  --green: #2E7D32;
  --shadow: 0 4px 24px rgba(74,0,128,0.15);
  --shadow-lg: 0 8px 40px rgba(74,0,128,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ---- Age Verification Popup ---- */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,5,20,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate-box {
  background: linear-gradient(145deg, #1a0a2e, #2d1060);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 60px rgba(212,160,23,0.3), var(--shadow-lg);
  animation: popupIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.7) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.age-gate-logo { margin: 0 auto 20px; width: 200px; }

.age-gate-box h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.age-gate-box p {
  color: #d0b0f0;
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.age-gate-box .badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  background: var(--red);
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(198,40,40,0.5);
}

.age-gate-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-age-yes {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-dark);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--gold-light);
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(212,160,23,0.4);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,160,23,0.6); }

.btn-age-no {
  background: transparent;
  color: #d0b0f0;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid #6B21A8;
  transition: all var(--transition);
}
.btn-age-no:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

.age-gate-disclaimer {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #8060a0;
}

/* ---- Top Notice Bar ---- */
.top-notice {
  background: linear-gradient(90deg, var(--purple-dark), var(--purple), var(--purple-dark));
  color: #e0c0ff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.top-notice strong { color: var(--gold-light); }

/* ---- Header / Navbar ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(212,160,23,0.3);
  box-shadow: 0 2px 20px rgba(74,0,128,0.1);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img, .nav-logo svg { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--purple);
  background: rgba(107,33,168,0.08);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

.nav-play-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-dark);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 15px rgba(212,160,23,0.4);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-play-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,0.6); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--purple); border-radius: 2px; transition: all var(--transition); }

/* ---- Social Casino Notice Banner ---- */
.social-notice {
  background: linear-gradient(135deg, #fff8e1, #fef3cd);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1200px;
  margin: 24px auto 0;
  padding-inline: 24px;
}
.social-notice .notice-icon { font-size: 1.8rem; flex-shrink: 0; }
.social-notice p { font-size: 0.87rem; color: var(--text-mid); font-weight: 500; }
.social-notice strong { color: var(--purple-dark); }

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1060 50%, #4A0080 100%);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.5);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(212,160,23,0.3);
}
.hero h1 span { color: var(--gold-light); }

.hero p {
  font-size: 1.1rem;
  color: #c0a0e0;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-dark);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid var(--gold-light);
  transition: all var(--transition);
  box-shadow: 0 6px 25px rgba(212,160,23,0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(212,160,23,0.6); }

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); }

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}
.stat-item .stat-label { font-size: 0.8rem; color: #a080c0; text-transform: uppercase; letter-spacing: 1px; }

.hero-ornament {
  position: absolute;
  font-size: 8rem;
  opacity: 0.04;
  pointer-events: none;
}
.hero-ornament.left { left: -20px; top: 50%; transform: translateY(-50%); }
.hero-ornament.right { right: -20px; top: 50%; transform: translateY(-50%); }

/* ---- Section Base ---- */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--text-dark); margin-bottom: 12px; }
.section-header h2 span { color: var(--purple); }
.section-header p { font-size: 1rem; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  border-radius: 3px;
  margin: 16px auto 0;
}

/* ---- Feature Cards ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,160,23,0.15);
  transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }

.feature-card .icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #fef3cd, #fff8e1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  border: 2px solid rgba(212,160,23,0.3);
}
.feature-card h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 10px; }
.feature-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ---- Games Section ---- */
.games-section { background: linear-gradient(180deg, var(--cream) 0%, #f0e6ff 100%); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.game-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(107,33,168,0.1);
  transition: all var(--transition);
}
.game-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.game-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.game-card-img img, .game-card-img svg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .game-card-img img,
.game-card:hover .game-card-img svg { transform: scale(1.05); }

.game-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.game-card-badge.hot { background: linear-gradient(135deg, #E91E63, #C62828); }

.game-card-info { padding: 24px; }
.game-card-info h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-dark); }
.game-card-info p { font-size: 0.87rem; color: var(--text-light); margin-bottom: 20px; }

.game-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.game-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.game-meta-item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.btn-play-now {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-play-now:hover {
  background: linear-gradient(135deg, var(--purple-light), var(--purple));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107,33,168,0.4);
  color: white;
}

/* ---- Responsible Gaming Widget ---- */
.rg-section { background: #fff; }

.rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.rg-card {
  background: linear-gradient(135deg, #f5f0ff, #fdf6e3);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid rgba(107,33,168,0.15);
  transition: all var(--transition);
}
.rg-card:hover { box-shadow: var(--shadow); }
.rg-card .rg-icon { font-size: 2rem; margin-bottom: 14px; }
.rg-card h4 { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.rg-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

.rg-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--purple-dark), #1a0a2e);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.rg-cta-text h3 { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold-light); margin-bottom: 8px; }
.rg-cta-text p { color: #c0a0e0; font-size: 0.9rem; }
.btn-rg {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--text-dark);
  font-family: 'Cinzel', serif;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  white-space: nowrap;
  transition: all var(--transition);
  border: 2px solid var(--gold-light);
}
.btn-rg:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,0.5); }

/* ---- Regulators / Trust Section ---- */
.trust-section {
  background: var(--cream);
  border-top: 1px solid rgba(212,160,23,0.2);
  border-bottom: 1px solid rgba(212,160,23,0.2);
  padding: 48px 24px;
}

.trust-inner { max-width: 1200px; margin: 0 auto; }

.trust-inner h3 {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.trust-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107,33,168,0.1);
  transition: all var(--transition);
  min-width: 130px;
  text-align: center;
}
.trust-logo:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.trust-logo .tl-icon { font-size: 2rem; }
.trust-logo .tl-name { font-size: 0.75rem; font-weight: 600; color: var(--text-mid); line-height: 1.3; }
.trust-logo .tl-tag { font-size: 0.65rem; color: var(--text-light); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,160,23,0.1);
}
.testimonial-stars { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.testimonial-location { font-size: 0.78rem; color: var(--text-light); }

/* ---- Footer ---- */
.site-footer {
  background: linear-gradient(180deg, #1a0a2e 0%, #0a0515 100%);
  color: #c0a0e0;
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.8;
  margin-top: 16px;
  color: #9070b0;
}

.footer-logo-wrap { margin-bottom: 4px; }

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,160,23,0.2);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: #9070b0;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-col ul li a::before { content: '›'; font-size: 1rem; color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: #9070b0;
  margin-bottom: 12px;
}
.footer-contact-item .ci-icon { font-size: 1rem; flex-shrink: 0; color: var(--gold); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-divider { height: 1px; background: rgba(255,255,255,0.06); margin-bottom: 32px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-left { font-size: 0.8rem; color: #6040a0; }
.footer-bottom-left a { color: #8060b0; transition: color var(--transition); }
.footer-bottom-left a:hover { color: var(--gold-light); }

.footer-18-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198,40,40,0.2);
  border: 1px solid rgba(198,40,40,0.5);
  color: #ff8080;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.footer-disclaimer {
  margin-top: 24px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: #5040800;
  line-height: 1.7;
  color: #604080;
}

/* ---- Page Banner (inner pages) ---- */
.page-banner {
  background: linear-gradient(135deg, #1a0a2e, #2d1060, #4A0080);
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFD700' fill-opacity='0.04'%3E%3Cpath d='M20 20l4-4-4-4-4 4 4 4zm0-12l8 8-8 8-8-8 8-8z'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.page-banner-inner { position: relative; max-width: 700px; margin: 0 auto; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: white; margin-bottom: 12px; }
.page-banner h1 span { color: var(--gold-light); }
.page-banner p { color: #c0a0e0; font-size: 1rem; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--purple); }
.breadcrumb a:hover { color: var(--gold-dark); }
.breadcrumb span { color: var(--text-light); }

/* ---- Mobile Menu ---- */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  background: white;
  border-top: 1px solid rgba(212,160,23,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 500;
  color: var(--text-mid);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(107,33,168,0.08); color: var(--purple); }

/* ---- Scroll to Top ---- */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  border: 2px solid rgba(212,160,23,0.3);
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,160,23,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(212,160,23,0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-in { animation: fadeInUp 0.6s ease both; }
.float-anim { animation: float 3s ease-in-out infinite; }

.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-play-btn { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 60px 24px 80px; }
  .hero-stats { gap: 24px; }
  .rg-cta { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .games-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .age-gate-box { padding: 36px 24px; }
  .age-gate-buttons { flex-direction: column; }
  .btn-age-yes, .btn-age-no { width: 100%; }
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
