@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Raleway:wght@300;400;600;700&display=swap');

:root {
  --bg: #021a19;
  --surface: #0a2f2d;
  --primary: #10b981;
  --accent: #34d399;
  --gold: #f59e0b;
  --text: #e0faf5;
  --muted: #6ee7b7;
  --border: rgba(16, 185, 129, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

a { color: var(--accent); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 26, 25, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo svg { width: 36px; height: 36px; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

nav a:hover {
  border-bottom-color: var(--primary);
  color: var(--accent);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* BANNER */
.banner {
  padding: 7rem 3rem 4rem;
  text-align: left;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.banner-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.banner h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.banner p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 520px;
}

.cta-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
}

.cta-btn:hover { background: var(--accent); transform: translateY(-2px); color: var(--bg); }

.banner-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-visual svg { width: 100%; max-width: 320px; }

/* INFO STRIP */
.info-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2.5rem 2rem;
  background: var(--surface);
  flex-wrap: wrap;
}

.info-item {
  text-align: center;
  flex: 0 1 280px;
}

.info-item .badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent);
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.info-item h3 { color: var(--gold); margin-bottom: 0.3rem; font-size: 1.1rem; }
.info-item p { font-size: 0.9rem; opacity: 0.85; }

/* CONTENT */
.content-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

.content-section h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.content-section p { margin-bottom: 1rem; max-width: 800px; }

/* GAME */
.game-container {
  max-width: 1000px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.game-container iframe {
  width: 100%;
  height: 600px;
  border: none;
  display: block;
}

/* CARDS */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 3rem auto;
  padding: 0 3rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

.card h3 { color: var(--gold); margin-bottom: 0.7rem; }
.card p { font-size: 0.95rem; opacity: 0.9; }
.card ul { padding-left: 1.2rem; font-size: 0.95rem; }
.card li { margin-bottom: 0.3rem; }

/* FOOTER */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 2.5rem 2rem;
  margin-top: 3rem;
}

.footer-responsible a {
  color: var(--muted);
  margin: 0 1rem;
  font-size: 0.9rem;
}

.footer-responsible a:hover { color: var(--gold); }
.site-footer .copy { margin-top: 1rem; font-size: 0.8rem; opacity: 0.5; }

/* AGE GATE */
.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 26, 25, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-dialog {
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
}

.age-dialog h2 { color: var(--gold); margin-bottom: 0.8rem; }
.age-dialog p { margin-bottom: 1.5rem; font-size: 0.95rem; }

.age-actions { display: flex; gap: 1rem; justify-content: center; }
.age-actions button {
  padding: 0.7rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.age-actions button:hover { transform: scale(1.04); }
.btn-confirm { background: var(--primary); color: var(--bg); }
.btn-deny { background: transparent; border: 2px solid var(--primary) !important; color: var(--accent); }

.age-overlay.hidden { display: none; }

/* LEGAL */
.legal-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 6rem 3rem 3rem;
}

.legal-content h1 { font-size: 2.3rem; color: var(--accent); margin-bottom: 1.5rem; }
.legal-content h2 { font-size: 1.4rem; color: var(--gold); margin: 1.8rem 0 0.8rem; }
.legal-content p { margin-bottom: 0.9rem; }
.legal-content ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.4rem; }

/* PLAY PAGE */
.play-section {
  text-align: center;
  padding: 6rem 2rem 2rem;
}

.play-section h1 { font-size: 2.4rem; color: var(--accent); margin-bottom: 0.8rem; }
.play-section p { max-width: 650px; margin: 0 auto 1.5rem; }

.usage-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  max-width: 650px;
  margin: 2rem auto;
  text-align: left;
  font-size: 0.93rem;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav ul {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    max-width: 280px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 4rem 2rem 2rem;
    transition: left 0.35s;
    border-right: 1px solid var(--border);
  }

  nav ul.open { left: 0; }
  .site-header { padding: 1rem 1.5rem; }
  .banner { padding: 5rem 1.5rem 3rem; }
  .banner-inner { grid-template-columns: 1fr; }
  .banner-visual { display: none; }
  .banner h1 { font-size: 2.2rem; }
  .info-strip { flex-direction: column; align-items: center; }
  .content-section { padding: 3rem 1.5rem; }
  .card-row { padding: 0 1.5rem; }
  .game-container iframe { height: 360px; }
}
