/* aetheravoryxon.xyz - Pastel Glassmorphism Theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Inter:wght@300;400;500;700&display=swap');

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

:root {
  --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --bg-base: #f0eeff;
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.4);
  --purple-deep: #4c2a85;
  --purple-light: #a78bfa;
  --text-dark: #2d1b69;
  --text-soft: #6b5b95;
  --accent-pink: #f472b6;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

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

/* NAVBAR */
.glass-nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(240, 238, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
}
.brand-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  background: var(--bg-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex; align-items: center; gap: 0.5rem;
}
.brand-name svg { width: 30px; height: 30px; }
.glass-links { display: flex; gap: 1.5rem; list-style: none; }
.glass-links a {
  color: var(--text-soft); font-weight: 500; font-size: 0.9rem;
  padding: 0.3rem 0.8rem; border-radius: 20px; transition: 0.3s;
}
.glass-links a:hover, .glass-links a.active {
  background: var(--bg-gradient); color: #fff;
  -webkit-text-fill-color: #fff;
}
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 5px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--purple-deep); margin: 5px 0; border-radius: 2px; }

/* HERO GRADIENT */
.hero-gradient {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 6rem 2rem 4rem;
  background: var(--bg-gradient);
  text-align: center; position: relative;
}
.hero-gradient::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 120px;
  background: linear-gradient(transparent, var(--bg-base));
}
.hero-gradient h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: #fff; margin-bottom: 1rem; font-weight: 700; position: relative; z-index: 1;
}
.hero-gradient > p {
  color: rgba(255,255,255,0.85); font-size: 1.1rem;
  max-width: 680px; margin: 0 auto 2rem; position: relative; z-index: 1;
}

/* GLASS CARDS */
.glass-row {
  display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap;
  position: relative; z-index: 1; max-width: 1000px; margin: 0 auto;
}
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 1.6rem; text-align: center;
  min-width: 240px; flex: 1; max-width: 300px;
}
.glass-card .gi { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.glass-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.4rem; }
.glass-card p { color: rgba(255,255,255,0.8); font-size: 0.88rem; }

/* SECTIONS */
.pastel-section {
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
}
.pastel-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--bg-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1.2rem; text-align: center;
}
.pastel-section p {
  color: var(--text-soft); max-width: 880px; margin: 0 auto 1rem;
  font-size: 1rem; text-align: center;
}

/* GAME */
.game-glass {
  max-width: 980px; margin: 2rem auto;
  background: #fff; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.2);
}
.game-glass iframe { width: 100%; height: 600px; border: none; display: block; }

/* FEATURE ROW */
.feature-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin: 2rem 0; max-width: 1200px; padding: 0 2rem;
  margin-left: auto; margin-right: auto;
}
.feature-card {
  background: #fff; border-radius: 16px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.12);
}
.feature-card h3 { color: var(--purple-deep); font-size: 1.1rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-soft); font-size: 0.93rem; }
.feature-card .fi { font-size: 2rem; margin-bottom: 0.8rem; display: block; }

/* FOOTER */
.pastel-footer {
  background: var(--bg-gradient); text-align: center; padding: 2.5rem 2rem;
}
.foot-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 1rem; }
.foot-links a { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.foot-links a:hover { color: #fff; }
.pastel-footer p { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* AGE VERIFY */
.age-layer {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(45, 27, 105, 0.92);
  display: flex; align-items: center; justify-content: center;
}
.age-layer.hidden { display: none; }
.age-glass {
  background: var(--glass-bg); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 2.5rem; max-width: 430px; text-align: center;
}
.age-glass h2 { color: #fff; margin-bottom: 1rem; font-size: 1.5rem; }
.age-glass p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.age-buttons { display: flex; gap: 1rem; justify-content: center; }
.age-buttons button {
  padding: 0.7rem 2rem; border: none; border-radius: 30px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: 0.2s;
}
.age-buttons button:hover { transform: translateY(-2px); }
.btn-allow { background: #fff; color: var(--purple-deep); }
.btn-block { background: transparent; border: 2px solid #fff !important; color: #fff; }

/* PAGES */
.page-area {
  max-width: 1200px; margin: 0 auto; padding: 6.5rem 2rem 4rem;
}
.page-area h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  background: var(--bg-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1.5rem;
}
.page-area h2 { font-size: 1.3rem; color: var(--purple-deep); margin: 1.8rem 0 0.7rem; -webkit-text-fill-color: var(--purple-deep); }
.page-area p, .page-area li { color: var(--text-soft); font-size: 0.98rem; margin-bottom: 0.7rem; }
.page-area ul { padding-left: 1.3rem; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .glass-links {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(240, 238, 255, 0.97);
    flex-direction: column; padding: 1.2rem 2rem; gap: 0.6rem;
    transform: translateY(-120%); transition: 0.3s;
  }
  .glass-links.open { transform: translateY(0); }
  .game-glass iframe { height: 380px; }
  .glass-row { flex-direction: column; align-items: center; }
  .feature-row { grid-template-columns: 1fr; }
}
