/* astravoryvexa.xyz - Warm Sunset Theme */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;700&display=swap');

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

:root {
  --sunset-dark: #1a0a1e;
  --sunset-purple: #4a1942;
  --sunset-orange: #ff6b35;
  --sunset-pink: #ff4f81;
  --sunset-gold: #ffc857;
  --warm-white: #fff8f0;
  --text-main: #f0e0d0;
  --text-muted: #b89aa0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sunset-dark);
  color: var(--text-main);
  line-height: 1.75;
  overflow-x: hidden;
}

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

a { color: var(--sunset-orange); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--sunset-gold); }

/* HEADER */
.sunset-header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(26, 10, 30, 0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
}
.sunset-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex; align-items: center; gap: 0.5rem;
}
.sunset-logo svg { width: 30px; height: 30px; }
.sunset-nav { display: flex; gap: 1.5rem; list-style: none; }
.sunset-nav a {
  color: var(--text-muted); font-weight: 500; font-size: 0.9rem;
  padding: 0.3rem 0.8rem; border-radius: 8px; transition: 0.3s;
}
.sunset-nav a:hover, .sunset-nav a.active {
  background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink));
  color: #fff; -webkit-text-fill-color: #fff;
}
.sunset-toggle {
  display: none; background: none; border: 1px solid var(--sunset-orange);
  border-radius: 6px; padding: 5px 8px; cursor: pointer;
}
.sunset-toggle span { display: block; width: 20px; height: 2px; background: var(--sunset-orange); margin: 4px 0; }

/* HERO */
.glow-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(170deg, var(--sunset-purple) 0%, var(--sunset-dark) 40%, #0d0515 100%);
  position: relative;
}
.glow-hero::before {
  content: ''; position: absolute; top: 15%; left: 30%; width: 40%; height: 40%;
  background: radial-gradient(ellipse, rgba(255,107,53,0.1), transparent 70%);
  filter: blur(80px);
}
.glow-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800;
  background: linear-gradient(135deg, var(--sunset-gold), var(--sunset-orange), var(--sunset-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1rem; position: relative;
}
.glow-hero p {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 700px; margin-bottom: 1.5rem; position: relative;
}

/* NOTICE ROW */
.notice-row {
  display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center;
  margin: 2rem 0; position: relative;
}
.notice-pill {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 30px; padding: 0.7rem 1.5rem;
  font-weight: 600; font-size: 0.9rem;
  color: var(--sunset-orange);
  display: flex; align-items: center; gap: 0.4rem;
}

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

/* GAME */
.game-glow {
  max-width: 1000px; margin: 2rem auto;
  border-radius: 14px; overflow: hidden;
  border: 2px solid rgba(255, 79, 129, 0.3);
  background: #0d0515;
  box-shadow: 0 10px 50px rgba(255, 107, 53, 0.08);
}
.game-glow iframe { width: 100%; height: 600px; border: none; display: block; }

/* GRID CARDS */
.warm-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin: 2rem 0;
}
.warm-card {
  background: rgba(74, 25, 66, 0.3);
  border: 1px solid rgba(255, 79, 129, 0.12);
  border-radius: 14px; padding: 2rem;
}
.warm-card h3 { color: var(--sunset-gold); font-size: 1.1rem; margin-bottom: 0.6rem; }
.warm-card p { color: var(--text-muted); font-size: 0.93rem; }
.warm-card .wi { font-size: 2rem; margin-bottom: 0.7rem; display: block; }

/* FOOTER */
.sunset-footer {
  background: rgba(13, 5, 21, 0.95);
  border-top: 1px solid rgba(255, 107, 53, 0.15);
  text-align: center; padding: 2.5rem 2rem;
}
.sf-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.sf-links a { color: var(--text-muted); font-size: 0.88rem; }
.sf-links a:hover { color: var(--sunset-orange); }
.sunset-footer p { color: #5a3a50; font-size: 0.8rem; }

/* AGE OVERLAY */
.age-sunset {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(13, 5, 21, 0.97);
  display: flex; align-items: center; justify-content: center;
}
.age-sunset.hidden { display: none; }
.age-modal {
  background: var(--sunset-purple); border: 2px solid var(--sunset-orange);
  border-radius: 18px; padding: 2.5rem; max-width: 430px; text-align: center;
}
.age-modal h2 {
  background: linear-gradient(135deg, var(--sunset-gold), var(--sunset-orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1rem; font-size: 1.5rem;
}
.age-modal p { color: var(--text-muted); margin-bottom: 1.5rem; }
.age-row { display: flex; gap: 1rem; justify-content: center; }
.age-row button {
  padding: 0.7rem 2rem; border: none; border-radius: 30px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: 0.2s;
}
.age-row button:hover { transform: scale(1.05); }
.btn-glow { background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink)); color: #fff; }
.btn-dim { background: transparent; border: 2px solid var(--sunset-orange) !important; color: var(--sunset-orange); }

/* PAGE */
.page-sunset {
  max-width: 1200px; margin: 0 auto; padding: 6.5rem 2rem 4rem;
}
.page-sunset h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  background: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 1.5rem;
}
.page-sunset h2 { font-size: 1.3rem; color: var(--sunset-gold); margin: 1.8rem 0 0.7rem; -webkit-text-fill-color: var(--sunset-gold); }
.page-sunset p, .page-sunset li { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 0.7rem; }
.page-sunset ul { padding-left: 1.3rem; }

@media (max-width: 768px) {
  .sunset-toggle { display: block; }
  .sunset-nav {
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(26, 10, 30, 0.98);
    flex-direction: column; padding: 1.2rem 2rem; gap: 0.6rem;
    transform: translateY(-120%); transition: 0.3s;
  }
  .sunset-nav.open { transform: translateY(0); }
  .game-glow iframe { height: 380px; }
  .warm-grid { grid-template-columns: 1fr; }
  .notice-row { flex-direction: column; align-items: center; }
}
