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

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

:root {
  --mystic-purple: #6b3fa0;
  --silver: #c0c8d4;
  --deep-bg: #0e0b1a;
  --card-surface: rgba(20,16,38,0.9);
  --glow: #a77bde;
  --text-light: #dcd5eb;
  --text-dim: #8e85a5;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--deep-bg); color: var(--text-light); line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Cinzel', serif; }
a { color: var(--glow); text-decoration: none; transition: 0.3s; }
a:hover { color: #d4b8ff; }

/* NAV */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(14,11,26,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(167,123,222,0.15);
  height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem;
}
.site-logo { font-family: 'Cinzel', serif; font-weight: 900; font-size: 1.4rem; color: var(--glow); display: flex; align-items: center; gap: 8px; }
.site-logo svg { width: 26px; height: 26px; }
.nav-menu { list-style: none; display: flex; gap: 1.8rem; }
.nav-menu a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); }
.nav-menu a:hover, .nav-menu a.active { color: var(--glow); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--glow); transition: 0.3s; }

/* HERO BANNER */
.banner {
  min-height: 100vh; display: flex; align-items: center; padding: 100px 2rem 60px;
  background: linear-gradient(160deg, #0e0b1a 30%, #1a1040 70%, #2a1568 100%);
}
.banner-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto; align-items: center; width: 100%; }
.banner-text h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; color: var(--silver); }
.banner-text h1 em { font-style: normal; color: var(--glow); }
.banner-text p { color: var(--text-dim); font-size: 1.1rem; margin-bottom: 1.5rem; }
.banner-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.badge-pill { background: rgba(107,63,160,0.2); border: 1px solid rgba(167,123,222,0.3); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.82rem; color: var(--glow); }

.btn-primary {
  display: inline-block; padding: 0.9rem 2.5rem; background: linear-gradient(135deg, var(--mystic-purple), #9c5fea);
  color: #fff; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px;
  border: none; border-radius: 30px; cursor: pointer; transition: 0.3s;
}
.btn-primary:hover { box-shadow: 0 0 20px rgba(167,123,222,0.5); transform: translateY(-2px); }

.banner-visual { text-align: center; }
.banner-visual iframe { width: 100%; height: 420px; border: 2px solid rgba(167,123,222,0.2); border-radius: 12px; background: #000; }

/* SECTIONS */
.section-block { padding: 80px 2rem; max-width: 1200px; margin: 0 auto; }
.section-block h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); text-align: center; margin-bottom: 1rem; color: var(--silver); }
.section-intro { text-align: center; color: var(--text-dim); max-width: 700px; margin: 0 auto 3rem; }

.triple-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.myth-card {
  background: var(--card-surface); border: 1px solid rgba(167,123,222,0.12); border-radius: 10px; padding: 2rem;
  text-align: center; transition: 0.3s;
}
.myth-card:hover { border-color: var(--glow); transform: translateY(-4px); }
.myth-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.myth-card h3 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--glow); }
.myth-card p { color: var(--text-dim); font-size: 0.95rem; }

/* HIGHLIGHT STRIP */
.highlight-strip {
  background: linear-gradient(135deg, rgba(107,63,160,0.15), rgba(26,16,64,0.4));
  border-top: 1px solid rgba(167,123,222,0.1); border-bottom: 1px solid rgba(167,123,222,0.1);
  padding: 3rem 2rem; text-align: center;
}
.highlight-strip h2 { color: var(--glow); margin-bottom: 1rem; }
.highlight-strip p { color: var(--text-dim); max-width: 700px; margin: 0 auto; }

/* FOOTER */
.page-footer {
  background: rgba(8,6,14,0.95); border-top: 1px solid rgba(167,123,222,0.1);
  padding: 3rem 2rem; text-align: center;
}
.page-footer p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-nav { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.footer-nav a { color: var(--text-dim); font-size: 0.85rem; }
.footer-nav a:hover { color: var(--glow); }

/* TEXT PAGES */
.page-text { padding: 110px 2rem 60px; max-width: 860px; margin: 0 auto; }
.page-text h1 { font-size: clamp(1.6rem, 3vw, 2.5rem); color: var(--silver); margin-bottom: 1.5rem; }
.page-text h2 { font-size: 1.25rem; color: var(--glow); margin: 2rem 0 0.8rem; text-align: left; }
.page-text p, .page-text li { color: var(--text-dim); margin-bottom: 1rem; }
.page-text ul { padding-left: 1.5rem; }

.game-frame { max-width: 960px; margin: 2rem auto; }
.game-frame iframe { width: 100%; height: 560px; border: 2px solid rgba(167,123,222,0.2); border-radius: 12px; background: #000; }

/* AGE GATE */
.age-wall { position: fixed; inset: 0; z-index: 9999; background: rgba(8,6,14,0.97); display: flex; align-items: center; justify-content: center; }
.age-panel {
  background: var(--card-surface); border: 1px solid rgba(167,123,222,0.3); border-radius: 14px;
  padding: 3rem; text-align: center; max-width: 420px; width: 90%;
}
.age-panel h2 { font-size: 1.4rem; color: var(--silver); margin-bottom: 1rem; }
.age-panel p { color: var(--text-dim); margin-bottom: 2rem; }
.age-buttons { display: flex; gap: 1rem; justify-content: center; }
.age-buttons .yes { padding: 0.75rem 2rem; background: linear-gradient(135deg, var(--mystic-purple), #9c5fea); color: #fff; border: none; border-radius: 30px; cursor: pointer; font-weight: 700; }
.age-buttons .no { padding: 0.75rem 2rem; background: transparent; border: 1px solid var(--glow); color: var(--glow); border-radius: 30px; cursor: pointer; }

.hidden { display: none !important; }

@media (max-width: 768px) {
  .nav-menu {
    display: none; flex-direction: column; position: absolute; top: 68px; left: 0; width: 100%;
    background: rgba(14,11,26,0.98); padding: 1.5rem 2.5rem; gap: 1rem;
  }
  .nav-menu.open { display: flex; }
  .menu-toggle { display: block; }
  .banner-grid { grid-template-columns: 1fr; }
  .banner-visual iframe { height: 300px; }
  .triple-grid { grid-template-columns: 1fr; }
  .game-frame iframe { height: 320px; }
}
