/* NyxaVoryVoryx - Unique Design 6: Dark neon purple single-column dramatic layout */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&family=Libre+Baskerville:wght@400;700&display=swap');

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

:root {
  --void: #0A0514;
  --deep-purple: #1A0B2E;
  --neon: #A855F7;
  --glow: #E879F9;
  --soft-pink: #F0ABFC;
  --surface: #1F1135;
  --card: #261548;
  --text: #EDE9FE;
  --text-dim: #A78BDB;
  --radius: 16px;
  --shadow-neon: 0 0 30px rgba(168,85,247,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--void);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
img, svg { max-width: 100%; display: block; }

/* HEADER */
.top-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  background: rgba(10,5,20,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(168,85,247,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.top-header .logo-img { height: 34px; }

.header-nav {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.header-nav a {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.header-nav a:hover { color: var(--glow); }

.ham-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.ham-btn span {
  width: 24px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO - Full width centered dramatic */
.dramatic-hero {
  margin-top: 64px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at 50% 40%, rgba(168,85,247,0.12) 0%, var(--void) 60%);
  position: relative;
}

.dramatic-hero::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--neon);
  filter: blur(150px);
  opacity: 0.1;
  top: 20%;
}

.dramatic-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.dramatic-hero h1 span { color: var(--glow); }

.dramatic-hero > p {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.neon-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  border: 2px solid var(--neon);
  color: var(--neon);
  font-weight: 700;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.neon-btn:hover {
  background: var(--neon);
  color: var(--void);
  box-shadow: 0 0 30px rgba(168,85,247,0.5);
}

.hero-frame {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  width: 100%;
  max-width: 680px;
}

.hero-frame iframe {
  width: 100%;
  height: 460px;
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow-neon);
}

/* TRIPLE COLUMNS */
.triple-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.triple-section h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 3rem;
}

.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.triple-card {
  background: var(--card);
  border: 1px solid rgba(168,85,247,0.12);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.triple-card:hover {
  border-color: var(--neon);
  transform: translateY(-4px);
}

.triple-card .tc-icon { font-size: 2.4rem; margin-bottom: 1rem; }

.triple-card h3 { color: var(--glow); margin-bottom: 0.6rem; font-size: 1.15rem; }

.triple-card p { color: var(--text-dim); font-size: 0.93rem; }

/* GLOW STRIP */
.glow-strip {
  background: linear-gradient(90deg, var(--deep-purple), var(--card), var(--deep-purple));
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(168,85,247,0.1);
  border-bottom: 1px solid rgba(168,85,247,0.1);
}

.glow-strip h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  color: var(--glow);
  margin-bottom: 1rem;
}

.glow-strip p { max-width: 700px; margin: 0 auto; color: var(--text-dim); }

/* FEATURES LIST */
.features-list {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.features-list h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.feat-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(168,85,247,0.1);
}

.feat-item:last-child { border-bottom: none; }

.feat-item .fi-icon { font-size: 2rem; flex-shrink: 0; }

.feat-item h3 { color: var(--neon); margin-bottom: 0.3rem; font-size: 1.05rem; }

.feat-item p { color: var(--text-dim); font-size: 0.93rem; }

/* TEXT PAGES */
.page-text {
  margin-top: 64px;
  padding: 4rem 2rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  min-height: calc(100vh - 64px - 170px);
}

.page-text h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
}

.page-text h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  color: var(--glow);
  margin: 2rem 0 0.7rem;
}

.page-text p { margin-bottom: 1rem; color: var(--text); }
.page-text ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.page-text li { color: var(--text-dim); margin-bottom: 0.3rem; }

/* PLAY */
.play-container {
  margin-top: 64px;
  padding: 3rem 2rem;
  text-align: center;
  min-height: calc(100vh - 64px - 170px);
}

.play-container h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.play-container > p {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--text-dim);
}

.play-container iframe {
  width: 100%;
  max-width: 960px;
  height: 600px;
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow-neon);
}

/* FOOTER */
.dark-footer {
  background: var(--deep-purple);
  border-top: 1px solid rgba(168,85,247,0.1);
  text-align: center;
  padding: 2.5rem 2rem 1.5rem;
}

.df-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.df-links a { color: var(--neon); font-size: 0.88rem; font-weight: 500; }
.df-links a:hover { color: var(--glow); }

.dark-footer p { color: rgba(255,255,255,0.3); font-size: 0.82rem; }

/* AGE OVERLAY */
.nyx-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,5,20,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nyx-overlay.hidden { display: none; }

.nyx-modal {
  background: var(--surface);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 440px;
  width: 90%;
}

.nyx-modal h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.nyx-modal p { color: var(--text-dim); margin-bottom: 2rem; }

.nyx-btns { display: flex; gap: 1rem; justify-content: center; }

.nyx-btns button {
  padding: 0.75rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.nyx-btns button:hover { transform: scale(1.05); }

.btn-glow {
  background: linear-gradient(135deg, var(--neon), var(--glow));
  color: var(--void);
}

.btn-dim {
  background: var(--card);
  color: var(--text-dim);
  border: 1px solid rgba(168,85,247,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .dramatic-hero h1 { font-size: 2.4rem; }
  .hero-frame iframe { height: 320px; }
  .triple-grid { grid-template-columns: 1fr; }
  .play-container iframe { height: 400px; }
}

@media (max-width: 768px) {
  .ham-btn { display: flex; }
  .header-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(10,5,20,0.98);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }
  .header-nav.open { transform: translateY(0); }
}
