@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

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

:root {
  --neon: #0066ff;
  --neon-light: #4d94ff;
  --orange: #ff6600;
  --bg-dark: #0a0a1e;
  --bg-medium: #101030;
  --card-surface: #14143a;
  --text-main: #e0e4f0;
  --text-sub: #7880a0;
  --neon-glow: rgba(0, 102, 255, 0.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; }
a { color: var(--neon); text-decoration: none; transition: 0.3s; }
a:hover { color: #fff; }

/* TOP NAV - wide, stretched */
.top-nav {
  position: fixed; top: 0; width: 100%; z-index: 900;
  background: rgba(10, 10, 30, 0.95);
  backdrop-filter: blur(10px);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 2px solid var(--neon-glow);
}
.logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--neon);
}
.links { display: flex; gap: 1.5rem; list-style: none; }
.links a { color: var(--text-sub); font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1.5px; }
.links a:hover { color: var(--neon); }

.menu-btn { display: none; background: none; border: 2px solid var(--neon); border-radius: 4px; padding: 6px 10px; cursor: pointer; }
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--neon); margin: 4px 0; }

/* HERO - asymmetric split */
.intro {
  min-height: 100vh;
  display: flex; align-items: stretch;
  background: var(--bg-dark);
  padding-top: 60px;
}
.intro-left {
  flex: 1.3;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem clamp(2rem, 5vw, 6rem);
}
.intro-left h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.intro-left h1 .neon { color: var(--neon); }
.intro-left h1 .hot { color: var(--orange); }
.intro-left p { color: var(--text-sub); font-size: 1.1rem; max-width: 480px; margin-bottom: 2rem; }
.action-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--neon);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  transition: 0.3s;
}
.action-btn:hover { background: var(--orange); color: #fff; }

.intro-right {
  flex: 0.7;
  background: linear-gradient(180deg, var(--bg-medium) 0%, rgba(0,102,255,0.08) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 3rem; text-align: center;
  border-left: 1px solid var(--neon-glow);
}
.intro-right .icon { font-size: 4rem; margin-bottom: 1rem; }
.intro-right h3 { font-size: 1.2rem; color: var(--neon); margin-bottom: 0.5rem; }
.intro-right p { color: var(--text-sub); font-size: 0.9rem; }

/* WARNINGS */
.warn-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--bg-medium);
}
.warn-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid var(--neon-glow);
}
.warn-item:last-child { border-right: none; }
.warn-item h3 { color: var(--orange); margin-bottom: 0.4rem; font-size: 1rem; }
.warn-item p { color: var(--text-sub); font-size: 0.9rem; }

/* GAME */
.game-zone {
  padding: 70px 2rem;
  background: var(--bg-dark);
}
.game-zone h2 { text-align: center; font-size: 2rem; margin-bottom: 0.5rem; }
.game-zone .desc { text-align: center; color: var(--text-sub); max-width: 520px; margin: 0 auto 2rem; }
.game-embed {
  max-width: 920px; margin: 0 auto;
  border: 2px solid rgba(0,102,255,0.2);
  overflow: hidden;
}
.game-embed iframe { width: 100%; height: 580px; border: none; background: #000; }

/* FEATURES */
.feat-section {
  padding: 70px 2rem;
  background: var(--bg-medium);
}
.feat-section h2 { text-align: center; font-size: 1.8rem; margin-bottom: 2rem; }
.feat-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.feat-item {
  background: var(--card-surface);
  padding: 1.8rem;
  border-left: 4px solid var(--neon);
}
.feat-item h3 { color: var(--neon-light); margin-bottom: 0.4rem; font-size: 1rem; }
.feat-item p { color: var(--text-sub); font-size: 0.92rem; }

/* FOOTER */
.bottom {
  padding: 2rem;
  text-align: center;
  background: var(--bg-dark);
  border-top: 1px solid var(--neon-glow);
}
.responsible a { color: var(--text-sub); margin: 0 0.8rem; font-size: 0.85rem; }
.responsible a:hover { color: var(--neon); }
.legal { color: var(--text-sub); font-size: 0.78rem; margin-top: 0.8rem; }

/* AGE GATE */
.age-block {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
}
.age-modal {
  background: var(--card-surface);
  border: 2px solid var(--neon);
  padding: 2.5rem;
  text-align: center;
  max-width: 400px; width: 90%;
}
.age-modal h2 { color: var(--neon); margin-bottom: 0.6rem; font-size: 1.3rem; }
.age-modal p { color: var(--text-sub); margin-bottom: 1.8rem; font-size: 0.92rem; }
.age-modal .btns { display: flex; gap: 1rem; justify-content: center; }
.age-modal button {
  padding: 10px 28px; font-family: 'Oswald', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
  border: 2px solid var(--neon); font-size: 0.9rem; transition: 0.3s;
}
.age-modal .ok { background: var(--neon); color: #fff; }
.age-modal .ok:hover { background: var(--orange); border-color: var(--orange); }
.age-modal .deny { background: transparent; color: var(--neon); }
.age-modal .deny:hover { background: rgba(0,102,255,0.1); }

.off { display: none !important; }

/* CONTENT PAGES */
.page-text {
  max-width: 880px; margin: 0 auto; padding: 100px 2rem 80px;
}
.page-text h1 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--neon); }
.page-text h2 { font-size: 1.2rem; margin: 1.8rem 0 0.7rem; color: var(--orange); }
.page-text p { color: var(--text-sub); margin-bottom: 1rem; }
.page-text ul { color: var(--text-sub); margin: 1rem 0 1rem 1.5rem; }
.page-text li { margin-bottom: 0.5rem; }

@media (max-width: 768px) {
  .menu-btn { display: block; }
  .links {
    position: fixed; top: 60px; right: 0; width: 65%;
    background: rgba(10,10,30,0.98);
    flex-direction: column; padding: 2rem; gap: 1rem;
    transform: translateX(100%); transition: 0.3s;
    height: calc(100vh - 60px);
  }
  .links.revealed { transform: translateX(0); }
  .intro { flex-direction: column; }
  .intro-left { padding: 3rem 2rem; }
  .intro-right { padding: 2rem; border-left: none; border-top: 1px solid var(--neon-glow); }
  .warn-bar { grid-template-columns: 1fr; }
  .game-embed iframe { height: 380px; }
}
