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

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

:root {
  --primary: #7b2ff7;
  --secondary: #c084fc;
  --accent: #e879f9;
  --bg-dark: #0a0118;
  --bg-card: #140228;
  --text-main: #e8dff5;
  --text-muted: #a78bbd;
  --gold: #fbbf24;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
}

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

/* NAV */
.top-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10,1,24,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,47,247,0.25);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
}

.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-wrap svg { width: 36px; height: 36px; }
.logo-text { font-family: 'Orbitron', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--secondary); }

.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--secondary); border-radius: 2px; transition: 0.3s; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 100px 2rem 4rem;
  background: radial-gradient(ellipse at 50% 30%, rgba(123,47,247,0.18) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 70%, rgba(232,121,249,0.1) 0%, transparent 60%),
              var(--bg-dark);
}

.hero h1 { font-size: 3rem; color: #fff; margin-bottom: 1rem; }
.hero h1 span { color: var(--accent); }
.hero p { max-width: 680px; font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; }
.badge { background: var(--bg-card); border: 1px solid var(--primary); padding: 0.6rem 1.4rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--gold); }

/* GAME SECTION */
.game-section {
  max-width: 960px; margin: 0 auto; padding: 3rem 1.5rem;
}
.game-section h2 { text-align: center; font-size: 2rem; margin-bottom: 1.5rem; color: #fff; }
.game-frame-wrap {
  position: relative; width: 100%; padding-top: 66.67%;
  border-radius: 16px; overflow: hidden; border: 2px solid var(--primary);
  box-shadow: 0 0 40px rgba(123,47,247,0.3);
}
.game-frame-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none;
}

/* INFO CARDS */
.info-grid {
  max-width: 1200px; margin: 4rem auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.info-card {
  background: var(--bg-card); border: 1px solid rgba(123,47,247,0.2);
  border-radius: 16px; padding: 2rem; text-align: center; transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(123,47,247,0.25); }
.info-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.info-card h3 { font-size: 1.1rem; color: var(--secondary); margin-bottom: 0.75rem; }
.info-card p { color: var(--text-muted); font-size: 0.92rem; }

/* FEATURES */
.features-band {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(123,47,247,0.08) 100%);
  padding: 4rem 1.5rem; margin: 3rem 0;
}
.features-band h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; color: #fff; }
.features-list { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; background: var(--bg-dark); border-radius: 12px; border-left: 4px solid var(--accent); }
.feature-item .num { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; color: var(--accent); font-weight: 900; min-width: 40px; }
.feature-item div h4 { color: #fff; margin-bottom: 0.3rem; }
.feature-item div p { color: var(--text-muted); font-size: 0.9rem; }

/* CONTENT SECTION */
.content-section {
  max-width: 900px; margin: 4rem auto; padding: 0 1.5rem;
}
.content-section h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: #fff; }
.content-section p { margin-bottom: 1.2rem; color: var(--text-muted); }
.content-section ul { margin: 1rem 0 1.5rem 1.5rem; }
.content-section li { color: var(--text-muted); margin-bottom: 0.5rem; }
.content-section h3 { font-size: 1.3rem; margin: 2rem 0 1rem; color: var(--secondary); }

/* PLAY PAGE */
.play-hero { padding: 100px 1.5rem 2rem; text-align: center; }
.play-hero h1 { font-size: 2.4rem; color: #fff; margin-bottom: 0.75rem; }
.play-hero p { color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; }
.play-note {
  max-width: 700px; margin: 2rem auto; background: var(--bg-card); border: 1px solid var(--primary);
  border-radius: 12px; padding: 1.5rem; text-align: left;
}
.play-note h3 { color: var(--secondary); margin-bottom: 0.5rem; }
.play-note p, .play-note li { color: var(--text-muted); font-size: 0.9rem; }

/* FOOTER */
.site-footer {
  background: var(--bg-card); border-top: 1px solid rgba(123,47,247,0.2);
  padding: 3rem 2rem 2rem; margin-top: 4rem; text-align: center;
}
.footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); }
.footer-responsible { margin-bottom: 1.5rem; }
.footer-responsible p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer-responsible a { color: var(--secondary); font-size: 0.85rem; margin: 0 0.5rem; }
.footer-copy { color: var(--text-muted); font-size: 0.8rem; opacity: 0.6; }

/* AGE MODAL */
.age-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999;
  background: rgba(10,1,24,0.96); display: flex; align-items: center; justify-content: center;
}
.age-overlay.hidden { display: none; }
.age-box {
  background: var(--bg-card); border: 2px solid var(--primary); border-radius: 20px;
  padding: 3rem 2.5rem; text-align: center; max-width: 440px; width: 90%;
  box-shadow: 0 0 60px rgba(123,47,247,0.4);
}
.age-box h2 { font-size: 1.6rem; color: #fff; margin-bottom: 1rem; }
.age-box p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.age-btns { display: flex; gap: 1rem; justify-content: center; }
.age-btns button {
  padding: 0.8rem 2.5rem; border: none; border-radius: 50px; font-family: 'Orbitron', sans-serif;
  font-weight: 700; font-size: 1rem; cursor: pointer; transition: 0.3s;
}
.btn-yes { background: var(--primary); color: #fff; }
.btn-yes:hover { background: var(--accent); }
.btn-no { background: transparent; border: 2px solid var(--text-muted); color: var(--text-muted); }
.btn-no:hover { border-color: #ef4444; color: #ef4444; }

/* MOBILE */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; width: 100%;
    background: rgba(10,1,24,0.97); flex-direction: column;
    padding: 2rem; gap: 1.2rem; transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .nav-links.open { transform: translateX(0); }
  .hero h1 { font-size: 2rem; }
  .info-grid { grid-template-columns: 1fr; }
  .game-frame-wrap { padding-top: 75%; }
}
