@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;800&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #c9a84c;
  --gold-light: #f0dfa0;
  --cream: #faf8f2;
  --dark: #1a1a1a;
  --text: #333;
  --muted: #777;
  --white: #fff;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); line-height: 1.75; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--dark); }

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--muted); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover, .nav-links a.active { color: var(--dark); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { width: 26px; height: 2px; background: var(--dark); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column; padding: 1.5rem 2rem;
    transform: translateY(-120%); transition: 0.35s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  .nav-links.open { transform: translateY(0); }
}

.hero-banner {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 2rem 4rem;
  background: linear-gradient(170deg, var(--white) 0%, var(--cream) 50%, rgba(201,168,76,0.08) 100%);
  border-bottom: 2px solid var(--gold-light);
}

.hero-banner h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--dark);
  margin-bottom: 1rem;
}
.hero-banner h1 span { color: var(--gold); }

.hero-banner .subtitle {
  max-width: 600px;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.btn {
  display: inline-block; padding: 0.9rem 2.4rem;
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1.5px; border-radius: 4px; transition: 0.3s; cursor: pointer; border: none;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8933a; color: var(--white); transform: translateY(-1px); }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.cards-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; padding: 5rem 2rem; max-width: 1100px; margin: 0 auto;
}
@media (max-width: 768px) { .cards-row { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-3px); }
.card .icon { font-size: 2.4rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--dark); }
.card p { font-size: 0.9rem; color: var(--muted); }

.game-area {
  padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; text-align: center;
}
.game-area h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1.5rem; color: var(--dark); }
.game-frame {
  width: 100%; max-width: 960px; margin: 0 auto;
  aspect-ratio: 16/10; border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(201,168,76,0.2);
}
.game-frame iframe { width: 100%; height: 100%; border: none; }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; padding: 5rem 2rem; max-width: 1100px; margin: 0 auto;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }
.two-col h3 { font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--dark); }
.two-col p { color: var(--muted); font-size: 0.95rem; }

.section { padding: 4rem 2rem; max-width: 900px; margin: 0 auto; }
.section h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; color: var(--dark); }
.section p, .section li { color: var(--muted); margin-bottom: 1rem; font-size: 0.95rem; }
.section ul { padding-left: 1.5rem; }

.page-top {
  padding: 130px 2rem 3rem; text-align: center;
  background: linear-gradient(170deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 2px solid var(--gold-light);
}
.page-top h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--dark); }

.site-footer {
  margin-top: 4rem; padding: 3rem 2rem;
  border-top: 2px solid var(--gold-light);
  text-align: center; background: var(--white);
}
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-links a { color: var(--muted); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }
.site-footer p { color: var(--muted); font-size: 0.8rem; }

.age-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,26,26,0.85);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
.age-box {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 440px; width: 90%;
}
.age-box h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--dark); }
.age-box p { color: var(--muted); margin-bottom: 2rem; }
.age-buttons { display: flex; gap: 1rem; justify-content: center; }
.age-buttons .btn { min-width: 120px; cursor: pointer; }
.age-overlay.hidden { display: none; }
