@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --navy: #0d1b3e;
  --navy-light: #162650;
  --navy-dark: #070f24;
  --silver: #c0c0c0;
  --silver-light: #e8e8e8;
  --silver-bright: #f0f0f0;
  --accent-blue: #4a7cc9;
  --text-body: #d0d5e0;
  --text-dim: #8a94a8;
  --white: #ffffff;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Lato', sans-serif; color: var(--text-body); background: var(--navy-dark); line-height: 1.75; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; }

/* HEADER - centered design */
.site-header { background: var(--navy); padding: 0 2rem; border-bottom: 1px solid rgba(192,192,192,0.15); position: sticky; top: 0; z-index: 1000; }
.header-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.5rem; color: var(--silver-light); text-decoration: none; display: flex; align-items: center; gap: 0.6rem; }
.logo-star { color: var(--silver); font-size: 1.4rem; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--silver-bright); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--silver); border-radius: 1px; transition: 0.3s; }

/* BANNER - split layout */
.banner { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
.banner-text { display: flex; flex-direction: column; justify-content: center; padding: 4rem 3rem; background: var(--navy); }
.banner-text h1 { font-size: 3.2rem; line-height: 1.2; color: var(--white); margin-bottom: 1.5rem; }
.banner-text h1 em { font-style: italic; color: var(--silver); }
.banner-text p { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 2rem; max-width: 500px; }
.banner-tags { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.tag { background: rgba(192,192,192,0.1); border: 1px solid rgba(192,192,192,0.25); padding: 0.4rem 1rem; border-radius: 4px; font-size: 0.8rem; color: var(--silver); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.banner-visual { background: linear-gradient(160deg, var(--navy-light) 0%, var(--accent-blue) 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.banner-visual::before { content: ''; position: absolute; width: 300px; height: 300px; border: 2px solid rgba(192,192,192,0.1); border-radius: 50%; }
.banner-visual::after { content: ''; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(192,192,192,0.05); border-radius: 50%; }
.banner-icon { font-size: 8rem; opacity: 0.6; }

/* SECTIONS */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1440px; margin: 0 auto; }
.section-heading { font-size: 2.2rem; color: var(--silver-light); margin-bottom: 0.8rem; }
.section-sub { color: var(--text-dim); font-size: 1rem; margin-bottom: 3rem; max-width: 600px; }
.dark-bg { background: var(--navy); }

/* TWO COLUMN INFO */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.info-block { border-left: 3px solid var(--silver); padding-left: 1.5rem; margin-bottom: 2rem; }
.info-block h3 { font-size: 1.3rem; color: var(--silver-light); margin-bottom: 0.5rem; }
.info-block p { color: var(--text-dim); font-size: 0.95rem; }

/* GAME AREA */
.game-wrapper { max-width: 960px; margin: 0 auto; }
.game-frame { border: 1px solid rgba(192,192,192,0.2); border-radius: 8px; overflow: hidden; background: var(--navy-dark); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.game-frame iframe { width: 100%; height: 620px; border: none; display: block; }

/* STATS BAR */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(192,192,192,0.1); border-radius: 8px; overflow: hidden; margin-top: 3rem; }
.stat-item { background: var(--navy); padding: 2rem; text-align: center; }
.stat-item .num { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--silver-bright); font-weight: 700; }
.stat-item .label { color: var(--text-dim); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem; }

/* HORIZONTAL CARDS */
.h-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.h-card { background: var(--navy-light); border-radius: 8px; padding: 2.5rem 2rem; border-top: 3px solid var(--silver); transition: transform 0.3s; }
.h-card:hover { transform: translateY(-4px); }
.h-card .card-icon { font-size: 2rem; margin-bottom: 1rem; }
.h-card h3 { font-family: 'Playfair Display', serif; color: var(--silver-light); margin-bottom: 0.8rem; font-size: 1.2rem; }
.h-card p { color: var(--text-dim); font-size: 0.9rem; }

/* CONTENT PAGE */
.content-page { padding: 3rem 2rem; min-height: 60vh; }
.content-inner { max-width: 860px; margin: 0 auto; }
.content-page h1 { font-size: 2.8rem; color: var(--silver-light); margin-bottom: 1.5rem; padding-top: 1rem; }
.content-page h2 { font-size: 1.4rem; color: var(--silver); margin: 2.5rem 0 0.8rem; font-style: italic; }
.content-page p, .content-page li { color: var(--text-dim); margin-bottom: 1rem; font-size: 0.95rem; }
.content-page ul { padding-left: 1.5rem; }

/* PLAY PAGE */
.play-hero { text-align: center; padding: 3rem 2rem 1rem; }
.play-hero h1 { font-size: 2.8rem; color: var(--silver-light); }
.play-hero p { color: var(--text-dim); max-width: 650px; margin: 1rem auto 2rem; }
.play-game { padding: 0 2rem 4rem; }

/* FOOTER */
.site-footer { background: var(--navy); border-top: 1px solid rgba(192,192,192,0.1); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1440px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--silver-bright); }
.footer-note { color: var(--text-dim); font-size: 0.8rem; text-align: right; }

/* AGE OVERLAY */
.age-overlay { position: fixed; inset: 0; background: rgba(7,15,36,0.95); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.age-overlay.hidden { display: none; }
.age-modal { background: var(--navy); border: 1px solid rgba(192,192,192,0.25); border-radius: 12px; padding: 3rem; text-align: center; max-width: 420px; width: 90%; }
.age-modal h2 { font-size: 1.8rem; color: var(--silver-light); margin-bottom: 0.8rem; }
.age-modal p { color: var(--text-dim); margin-bottom: 2rem; font-size: 0.95rem; }
.age-actions { display: flex; gap: 1rem; justify-content: center; }
.age-btn { padding: 0.7rem 2rem; border-radius: 6px; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; transition: 0.3s; }
.age-btn.confirm { background: var(--silver); color: var(--navy-dark); }
.age-btn.confirm:hover { background: var(--silver-bright); }
.age-btn.deny { background: transparent; border: 1px solid var(--silver); color: var(--silver); }
.age-btn.deny:hover { background: rgba(192,192,192,0.08); }

/* MOBILE */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem; border-bottom: 1px solid rgba(192,192,192,0.15); }
  .nav-links.open { display: flex; }
  .banner { grid-template-columns: 1fr; }
  .banner-visual { min-height: 250px; }
  .banner-text { padding: 3rem 1.5rem; }
  .banner-text h1 { font-size: 2.2rem; }
  .two-col { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .h-cards { grid-template-columns: 1fr; }
  .game-frame iframe { height: 400px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-note { text-align: center; }
}
