/* =============================================
   Royal Lotus Arena — Main Stylesheet
   Social Casino | India | 18+ Only
   ============================================= */

/* ---- Fonts ---- */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---- CSS Variables ---- */
:root {
  --primary:       #8B1A1A;   /* deep ruby */
  --primary-light: #B22222;
  --primary-dark:  #5C0F0F;
  --gold:          #C9A84C;
  --gold-light:    #E8C97E;
  --gold-dark:     #9A7A30;
  --bg:            #FDF8F0;
  --bg-card:       #FFFFFF;
  --bg-section:    #FFF5E6;
  --text:          #1A1A2E;
  --text-muted:    #6B6B7B;
  --text-light:    #9E9EAE;
  --border:        #E8D9C0;
  --shadow-sm:     0 2px 8px rgba(139,26,26,.08);
  --shadow-md:     0 8px 30px rgba(139,26,26,.12);
  --shadow-lg:     0 20px 60px rgba(139,26,26,.18);
  --radius:        14px;
  --radius-lg:     24px;
  --transition:    0.3s cubic-bezier(.4,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: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* =============================================
   AGE VERIFICATION POPUP
   ============================================= */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,5,0,.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
#age-gate.hidden { display: none; }

.age-gate__box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--gold);
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes popIn {
  from { opacity:0; transform: scale(.85) translateY(20px); }
  to   { opacity:1; transform: scale(1)  translateY(0); }
}

.age-gate__logo { margin: 0 auto 1.5rem; width: 80px; height: 80px; }
.age-gate__title {
  font-size: 1.7rem; font-weight: 700;
  color: var(--primary); margin-bottom: .5rem;
  font-family: Georgia, 'Times New Roman', serif;
}
.age-gate__sub { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.5rem; }
.age-gate__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary); color: #fff;
  border-radius: 50px; padding: .5rem 1.2rem;
  font-weight: 700; font-size: 1.1rem; margin-bottom: 1.8rem;
}
.age-gate__note { font-size: .82rem; color: var(--text-muted); margin-bottom: 1.8rem; }
.age-gate__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 2rem;
  border-radius: 50px; font-weight: 600; font-size: .95rem;
  transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; box-shadow: 0 4px 20px rgba(139,26,26,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(139,26,26,.45); color:#fff; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark); box-shadow: 0 4px 20px rgba(201,168,76,.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.5); }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,252,245,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-logo {
  display: flex; align-items: center; gap: .75rem;
  font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700;
  color: var(--primary);
}
.site-logo svg { flex-shrink: 0; }
.logo-text span { color: var(--gold-dark); }

.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu a {
  padding: .55rem 1rem; border-radius: 8px;
  color: var(--text); font-size: .9rem; font-weight: 500;
  transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { background: var(--bg-section); color: var(--primary); }
.nav-menu .nav-badge {
  font-size: .7rem; background: var(--primary); color: #fff;
  border-radius: 4px; padding: .1rem .35rem; margin-left: .25rem;
}

.nav-cta { margin-left: .75rem; }
.header-18 {
  background: var(--primary); color: #fff;
  font-size: .7rem; font-weight: 700; border-radius: 6px;
  padding: .2rem .5rem; margin-left: .5rem;
}

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

.mobile-nav {
  display: none; position: absolute; top: 72px; left: 0; right: 0;
  background: rgba(255,252,245,.98); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem; flex-direction: column; gap: .25rem;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: .75rem 1rem; border-radius: 8px; color: var(--text); font-weight: 500; }
.mobile-nav a:hover { background: var(--bg-section); color: var(--primary); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #FFF9F0 0%, #FFF3DC 40%, #FDF0E8 100%);
  min-height: 600px; display: flex; align-items: 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='%23C9A84C' fill-opacity='0.06'%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");
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  animation: float linear infinite;
  opacity: .5;
}
@keyframes float {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: .5; }
  90%  { opacity: .5; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 5rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border-radius: 50px; padding: .45rem 1.2rem;
  font-size: .8rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 1.2rem;
  color: var(--primary-dark);
}
.hero-title .gold { color: var(--gold-dark); }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 520px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
}
.hero-stat { }
.hero-stat__num { font-size: 1.6rem; font-weight: 700; color: var(--primary); font-family: Georgia, serif; }
.hero-stat__label { font-size: .8rem; color: var(--text-muted); }

.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--bg-section); }
.container { max-width: 1280px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff; border-radius: 50px; padding: .35rem 1rem;
  font-size: .8rem; font-weight: 600; margin-bottom: 1rem;
}
.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--primary-dark); margin-bottom: .75rem;
}
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 600px; margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }

/* Game Cards */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.game-card { }
.game-card__thumb {
  width: 100%; height: 200px; overflow: hidden;
  position: relative; background: var(--bg-section);
}
.game-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.game-card:hover .game-card__thumb img { transform: scale(1.05); }
.game-card__badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--primary); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: .25rem .65rem; border-radius: 50px;
}
.game-card__free {
  position: absolute; top: .75rem; right: .75rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary-dark); font-size: .72rem; font-weight: 700;
  padding: .25rem .65rem; border-radius: 50px;
}
.game-card__body { padding: 1.25rem; }
.game-card__title { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.game-card__desc { font-size: .87rem; color: var(--text-muted); margin-bottom: 1rem; }

/* Feature cards */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--bg-card); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  text-align: center; transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(139,26,26,.1), rgba(201,168,76,.15));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.7rem;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.feature-card p { font-size: .88rem; color: var(--text-muted); }

/* =============================================
   RESPONSIBLE GAMBLING BANNER
   ============================================= */
.rg-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; border-radius: var(--radius-lg);
  padding: 3rem 2rem; margin: 3rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.rg-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.02) 10px, rgba(255,255,255,.02) 20px);
}
.rg-banner__inner { position: relative; z-index: 1; }
.rg-banner h2 { font-family: Georgia, serif; font-size: 1.8rem; margin-bottom: .75rem; }
.rg-banner p { opacity: .9; margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.rg-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.rg-link {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.3); border-radius: 50px;
  padding: .5rem 1.2rem; font-size: .87rem; font-weight: 500;
  transition: all var(--transition);
}
.rg-link:hover { background: rgba(255,255,255,.25); color: #fff; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: linear-gradient(180deg, #1A0808 0%, #0D0404 100%);
  color: rgba(255,255,255,.8); padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-brand .site-logo { color: var(--gold-light); margin-bottom: 1rem; }
.footer-brand p { font-size: .87rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-col h4 { color: var(--gold-light); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.65); font-size: .88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1280px; margin: 2.5rem auto 0;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-badges { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }
.footer-badge {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; padding: .3rem .75rem; font-size: .72rem; color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.footer-badge.highlight { background: rgba(201,168,76,.15); border-color: rgba(201,168,76,.3); color: var(--gold-light); }
.footer-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff; font-size: .75rem; font-weight: 900;
  border: 2px solid var(--gold);
}
.footer-disclaimer {
  max-width: 1280px; margin: 1rem auto 0;
  font-size: .75rem; color: rgba(255,255,255,.35); line-height: 1.6; text-align: center;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(145deg, #FFF9F0, #FFF3DC);
  padding: 3.5rem 1.5rem 2.5rem; text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--primary-dark);
  margin-bottom: .75rem;
}
.page-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  font-size: .82rem; color: var(--text-muted); margin-top: 1rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }

/* =============================================
   RESPONSIBLE GAMBLING PAGE
   ============================================= */
.rg-tips { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.rg-tip {
  background: var(--bg-card); border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--border); border-left: 4px solid var(--primary);
}
.rg-tip__icon { font-size: 1.8rem; margin-bottom: .75rem; }
.rg-tip h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; color: var(--text); }
.rg-tip p { font-size: .88rem; color: var(--text-muted); }

.helplines { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1.5rem; }
.helpline-card {
  background: var(--bg-card); border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; gap: 1rem; align-items: flex-start;
}
.helpline-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(139,26,26,.1), rgba(201,168,76,.1));
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.helpline-body h4 { font-size: .95rem; font-weight: 700; margin-bottom: .25rem; color: var(--text); }
.helpline-body p { font-size: .82rem; color: var(--text-muted); margin-bottom: .5rem; }
.helpline-body a { font-size: .82rem; font-weight: 600; color: var(--primary); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; color: var(--text); }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: .85rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--bg-card);
  font-family: inherit; font-size: .95rem; color: var(--text);
  transition: border-color var(--transition);
  margin-bottom: 1.25rem; resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.contact-info-card {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  color: #fff; border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-info-card h3 { font-family: Georgia, serif; font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--gold-light); }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-info-item i { color: var(--gold-light); margin-top: .2rem; }
.contact-info-item h5 { font-size: .88rem; font-weight: 700; margin-bottom: .2rem; color: var(--gold-light); }
.contact-info-item p, .contact-info-item a { font-size: .88rem; color: rgba(255,255,255,.8); }
.contact-info-item a:hover { color: var(--gold-light); }

/* =============================================
   TERMS / PRIVACY
   ============================================= */
.prose h2 { font-family: Georgia, serif; font-size: 1.3rem; color: var(--primary-dark); margin: 2rem 0 .75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.prose h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.prose p { font-size: .95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.prose ul { margin: 1rem 0 1rem 1.5rem; }
.prose ul li { font-size: .95rem; color: var(--text-muted); margin-bottom: .5rem; list-style: disc; }
.prose strong { color: var(--text); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-box {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 3px solid var(--gold);
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1.5rem; }
.team-card {
  background: var(--bg-card); border-radius: var(--radius); padding: 1.5rem;
  text-align: center; border: 1px solid var(--border); transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 1rem;
  border: 3px solid var(--border);
}
.team-card h4 { font-size: .95rem; font-weight: 700; }
.team-card p { font-size: .82rem; color: var(--text-muted); }

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.toast-container { position: fixed; bottom: 2rem; right: 2rem; z-index: 5000; display: flex; flex-direction: column; gap: .75rem; }
.toast {
  background: var(--bg-card); border-radius: 12px; padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md); border-left: 4px solid var(--gold);
  font-size: .9rem; max-width: 320px;
  animation: slideIn .3s cubic-bezier(.34,1.56,.64,1);
}
.toast.success { border-left-color: #22c55e; }
.toast.error { border-left-color: var(--primary); }
@keyframes slideIn {
  from { opacity:0; transform: translateX(40px); }
  to   { opacity:1; transform: translateX(0); }
}

/* =============================================
   UTILITIES
   ============================================= */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.gold-text { color: var(--gold-dark); }
.primary-text { color: var(--primary); }
.divider { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }
.tag {
  display: inline-block; background: rgba(139,26,26,.08);
  color: var(--primary); border-radius: 50px;
  padding: .2rem .75rem; font-size: .78rem; font-weight: 600;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .section { padding: 3rem 1.25rem; }
  .age-gate__box { padding: 2rem 1.5rem; }
  .age-gate__btns { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 1rem; }
  .games-grid { grid-template-columns: 1fr; }
}
