/* ============================================================
   Golden Peacock Play — Main Stylesheet
   Social Casino for India | 18+ Only | No Real Money
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --gold: #FFD700;
  --gold-light: #FFE84D;
  --gold-dark: #CC8800;
  --purple-deep: #1a0030;
  --purple-mid: #2d0a4e;
  --purple-light: #4a0080;
  --teal: #00CED1;
  --teal-light: #40E0D0;
  --crimson: #DC143C;
  --white: #ffffff;
  --off-white: #F5F0FF;
  --text-muted: #C9BADC;
  --border-gold: rgba(255, 215, 0, 0.35);
  --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.3);
  --shadow-deep: 0 8px 32px rgba(0, 0, 0, 0.6);
  --gradient-bg: linear-gradient(135deg, #0d001a 0%, #1a003a 40%, #2d0a4e 70%, #0d001a 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  --gradient-card: linear-gradient(145deg, #2a0050 0%, #1a003a 100%);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --font-accent: 'Playfair Display', serif;
  --nav-height: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--off-white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--purple-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 600; }

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

p { color: var(--text-muted); }

.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-white { color: var(--white); }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }

/* Gold divider */
.divider-gold {
  width: 80px; height: 3px;
  background: var(--gradient-gold);
  margin: 16px auto;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.age-gate-box {
  background: linear-gradient(145deg, #2a0050, #1a003a);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 500px;
  width: 92%;
  text-align: center;
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.2), var(--shadow-deep);
  animation: popupIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.age-gate-logo { width: 100px; margin-bottom: 20px; }

.age-gate-box h2 {
  color: var(--gold);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.age-gate-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.age-gate-warning {
  background: rgba(220, 20, 60, 0.15);
  border: 1px solid rgba(220, 20, 60, 0.4);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: #FF8080;
}

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

.btn-age-yes, .btn-age-no {
  padding: 14px 30px;
  border: none; cursor: pointer;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.btn-age-yes {
  background: var(--gradient-gold);
  color: var(--purple-deep);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}
.btn-age-yes:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6); }

.btn-age-no {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-age-no:hover { background: rgba(255,255,255,0.05); color: var(--white); }

/* --- Navigation --- */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
}

#main-nav.scrolled {
  background: rgba(13, 0, 26, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img { width: 50px; height: 50px; object-fit: contain; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.nav-logo-text span:last-child {
  font-size: 0.65rem;
  color: var(--teal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links li a {
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-links li a:hover { color: var(--gold); }
.nav-links li a:hover::after, .nav-links li a.active::after { left: 16px; right: 16px; }
.nav-links li a.active { color: var(--gold); }

.nav-badge-18 {
  background: var(--crimson);
  color: white;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.2);
}

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px;
  flex-direction: column; gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.svg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(74, 0, 128, 0.3) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  color: var(--white);
  margin-bottom: 8px;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.hero-title .gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--teal-light);
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

.hero-disclaimer {
  margin-top: 40px;
  padding: 12px 24px;
  background: rgba(220, 20, 60, 0.12);
  border: 1px solid rgba(220, 20, 60, 0.3);
  border-radius: 8px;
  font-size: 0.8rem;
  color: #FF9999;
  display: inline-block;
}

/* Floating particles */
.hero-particles {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-20vh) rotate(720deg); opacity: 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: none; cursor: pointer;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: var(--gradient-gold);
  color: var(--purple-deep);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35);
}
.btn-primary:hover {
  color: var(--purple-deep);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.btn-teal {
  background: linear-gradient(135deg, #00CED1, #008B8B);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 206, 209, 0.3);
}
.btn-teal:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0, 206, 209, 0.5); }

.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg { padding: 18px 42px; font-size: 1rem; }

/* --- Section Headers --- */
.section-header { margin-bottom: 60px; }
.section-header .tag {
  display: inline-block;
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { color: var(--white); margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* --- Cards --- */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.4), var(--shadow-gold); }
.card:hover::before { transform: scaleX(1); }

/* --- Game Cards --- */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.game-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(255,215,0,0.2);
  border-color: var(--gold);
}

.game-card-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.game-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .game-card-thumb img { transform: scale(1.08); }

.game-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gradient-gold);
  color: var(--purple-deep);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,0,26,0.8) 0%, transparent 50%);
}

.game-card-body { padding: 20px 24px 24px; }
.game-card-body h3 { color: var(--gold); font-size: 1.2rem; margin-bottom: 8px; }
.game-card-body p { font-size: 0.9rem; margin-bottom: 16px; }

.game-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.game-card-tag {
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}

/* --- Stats Section --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--gradient-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  transition: var(--transition);
}

.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.stat-card .stat-icon { font-size: 2.5rem; margin-bottom: 12px; }
.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255,215,0,0.3);
}
.stat-card .stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

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

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.feature-icon {
  width: 70px; height: 70px;
  background: rgba(255, 215, 0, 0.08);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.feature-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 12px; }
.feature-card p { font-size: 0.88rem; line-height: 1.7; }

/* --- Responsible Gaming Section --- */
.responsible-banner {
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(45, 10, 78, 0.5) 100%);
  border: 1px solid rgba(220, 20, 60, 0.3);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
}

.responsible-banner h2 { color: var(--white); margin-bottom: 16px; }
.responsible-banner p { max-width: 650px; margin: 0 auto 30px; }

.rg-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.rg-tool {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.rg-tool:hover { border-color: var(--teal); box-shadow: 0 0 15px rgba(0, 206, 209, 0.15); }
.rg-tool .rg-icon { font-size: 2rem; margin-bottom: 10px; }
.rg-tool h4 { color: var(--teal-light); font-size: 0.9rem; margin-bottom: 6px; }
.rg-tool p { font-size: 0.8rem; }

/* --- Regulators Section --- */
.regulators-bar {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 24px 0;
}

.regulators-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.regulator-item {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: var(--transition);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
}
.regulator-item:hover { opacity: 1; color: var(--gold); }
.regulator-item .reg-icon { font-size: 1.5rem; }

/* --- Footer --- */
footer {
  background: linear-gradient(to bottom, var(--purple-deep), #070010);
  border-top: 1px solid var(--border-gold);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand { }
.footer-brand img { width: 60px; margin-bottom: 16px; }
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,215,0,0.08);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: var(--purple-deep); }

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--gold); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-disclaimer {
  background: rgba(220, 20, 60, 0.08);
  border: 1px solid rgba(220, 20, 60, 0.2);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: #FF9999;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255,215,0,0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: calc(var(--nav-height) + 60px) 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-bg.svg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--gold); margin-bottom: 16px; }
.page-header p { max-width: 600px; margin: 0 auto; }

/* --- Spin animations --- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes coinFlip {
  0% { transform: rotateY(0deg); }
  50% { transform: rotateY(90deg); }
  100% { transform: rotateY(0deg); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* Gold shimmer text */
.shimmer-text {
  background: linear-gradient(90deg, #FFD700 25%, #FFF5B0 50%, #FFD700 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* --- Page Transition --- */
.page-enter { animation: fadeIn 0.4s ease; }

/* --- Info Banner (18+) --- */
.info-banner-18 {
  background: linear-gradient(90deg, rgba(220,20,60,0.15), rgba(45,10,78,0.5), rgba(220,20,60,0.15));
  border: 1px solid rgba(220, 20, 60, 0.3);
  text-align: center;
  padding: 12px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  color: #FF9999;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 999;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(13,0,26,0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-gold);
    gap: 4px;
  }
  .nav-links.open li a { display: block; padding: 12px 16px; }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .age-gate-buttons { flex-direction: column; }
  .btn-age-yes, .btn-age-no { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 16px; }
}

/* --- Glow effects --- */
.glow-gold { box-shadow: 0 0 20px rgba(255, 215, 0, 0.35); }
.glow-teal { box-shadow: 0 0 20px rgba(0, 206, 209, 0.35); }

/* --- Ornament divider --- */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 40px 0;
}
.ornament-divider::before, .ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-gold);
}
.ornament-divider span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* --- Toast notifications --- */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--gradient-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 16px 24px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  z-index: 9999;
  animation: slideIn 0.3s ease;
  box-shadow: var(--shadow-deep);
}
