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

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

:root {
  --gold: #d4a843;
  --gold-light: #f0d68a;
  --wine: #5c1a2a;
  --bg-dark: #1a0f14;
  --bg-card: #2a1520;
  --cream: #faf3e6;
  --muted: #bca78c;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

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

/* HEADER */
.header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(26,15,20,0.96); border-bottom: 1px solid rgba(212,168,67,0.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 70px;
}

.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--gold); display: flex; align-items: center; gap: 10px; }
.logo svg { width: 30px; height: 30px; }

.main-nav { list-style: none; display: flex; gap: 2rem; }
.main-nav a { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); font-weight: 400; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }

.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: 0.3s; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 2rem 80px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--wine) 100%);
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(212,168,67,0.06) 0%, transparent 70%);
}
.hero-inner { position: relative; max-width: 800px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1.2rem; color: var(--gold-light); }
.hero p { font-size: 1.15rem; color: var(--muted); margin-bottom: 2rem; }

.notices { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-bottom: 2.5rem; }
.notice-tag {
  background: rgba(212,168,67,0.1); border: 1px solid rgba(212,168,67,0.3);
  padding: 0.5rem 1.3rem; border-radius: 4px; font-size: 0.85rem; color: var(--gold);
}

.gold-btn {
  display: inline-block; padding: 1rem 3rem; background: linear-gradient(135deg, var(--gold), #c4922e);
  color: var(--bg-dark); font-weight: 700; font-size: 0.95rem; text-transform: uppercase;
  letter-spacing: 2px; border: none; border-radius: 4px; cursor: pointer; transition: 0.3s;
}
.gold-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-1px); }

/* SECTIONS */
.content-section { padding: 80px 2rem; max-width: 1200px; margin: 0 auto; }
.content-section h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); text-align: center; margin-bottom: 1rem; color: var(--gold-light); }
.section-sub { text-align: center; color: var(--muted); max-width: 650px; margin: 0 auto 3rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.feature-box {
  background: var(--bg-card); border: 1px solid rgba(212,168,67,0.15); padding: 2.5rem; border-radius: 8px;
  transition: border-color 0.3s;
}
.feature-box:hover { border-color: var(--gold); }
.feature-box h3 { font-size: 1.2rem; color: var(--gold); margin-bottom: 1rem; }
.feature-box p { color: var(--muted); }

/* GAME */
.game-container { max-width: 960px; margin: 2rem auto; }
.game-container iframe {
  width: 100%; height: 580px; border: 2px solid rgba(212,168,67,0.25); border-radius: 8px; background: #000;
}

/* DIVIDER */
.divider { width: 80px; height: 2px; background: var(--gold); margin: 3rem auto; opacity: 0.5; }

/* BANNER */
.info-banner {
  background: linear-gradient(135deg, var(--wine), #3a0f1b);
  border: 1px solid rgba(212,168,67,0.2); border-radius: 8px;
  padding: 3rem; text-align: center; max-width: 1200px; margin: 0 auto;
}
.info-banner h2 { color: var(--gold-light); margin-bottom: 1rem; }
.info-banner p { color: var(--muted); max-width: 700px; margin: 0 auto; }

/* FOOTER */
footer {
  background: rgba(15,8,12,0.95); border-top: 1px solid rgba(212,168,67,0.12);
  padding: 3rem 2rem; text-align: center;
}
footer p { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.4rem; }
.foot-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.foot-links a { color: var(--muted); font-size: 0.85rem; }
.foot-links a:hover { color: var(--gold); }

/* TEXT PAGE */
.text-content { padding: 110px 2rem 60px; max-width: 860px; margin: 0 auto; }
.text-content h1 { font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--gold-light); margin-bottom: 1.5rem; }
.text-content h2 { font-size: 1.3rem; color: var(--gold); margin: 2rem 0 0.8rem; text-align: left; }
.text-content p, .text-content li { color: var(--muted); margin-bottom: 1rem; }
.text-content ul { padding-left: 1.5rem; }

/* AGE GATE */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15,8,12,0.97); display: flex; align-items: center; justify-content: center;
}
.age-modal {
  background: var(--bg-card); border: 1px solid rgba(212,168,67,0.3);
  border-radius: 12px; padding: 3rem; text-align: center; max-width: 400px; width: 90%;
}
.age-modal h2 { font-size: 1.5rem; color: var(--gold-light); margin-bottom: 1rem; }
.age-modal p { color: var(--muted); margin-bottom: 2rem; }
.age-actions { display: flex; gap: 1rem; justify-content: center; }
.btn-confirm { padding: 0.75rem 2rem; background: linear-gradient(135deg, var(--gold), #c4922e); color: var(--bg-dark); font-weight: 700; border: none; border-radius: 4px; cursor: pointer; font-size: 0.9rem; }
.btn-deny { padding: 0.75rem 2rem; background: transparent; border: 1px solid var(--gold); color: var(--gold); border-radius: 4px; cursor: pointer; font-size: 0.9rem; }

.hidden { display: none !important; }

@media (max-width: 768px) {
  .main-nav {
    display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%;
    background: rgba(26,15,20,0.98); padding: 1.5rem 3rem; gap: 1rem;
    border-bottom: 1px solid rgba(212,168,67,0.15);
  }
  .main-nav.open { display: flex; }
  .burger { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .game-container iframe { height: 340px; }
  .header { padding: 0 1.5rem; }
}
