@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@300;400;500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --aurora-pink: #e8a4c8;
  --deep-plum: #2d1b3d;
  --lavender: #b8a9d4;
  --soft-white: #faf5ff;
  --rose: #d4688c;
  --text-dark: #3a2a48;
  --text-muted: #7a6b8c;
  --warm-violet: #6b4d8a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--soft-white);
  color: var(--text-dark);
  line-height: 1.8;
}

.site-header {
  background: var(--deep-plum);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--aurora-pink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo svg { width: 30px; height: 30px; }

.nav-links { list-style: none; display: flex; gap: 2rem; }

.nav-links a {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--lavender);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--aurora-pink); }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; background: none; border: none; }
.hamburger span { width: 26px; height: 3px; background: var(--aurora-pink); border-radius: 3px; }

main { min-height: 80vh; }

.hero {
  background: linear-gradient(140deg, var(--deep-plum) 0%, #4a2a60 30%, #6b3d7a 60%, var(--deep-plum) 100%);
  padding: 7rem 2rem 5rem;
  text-align: center;
  color: var(--soft-white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--soft-white);
  border-radius: 50% 50% 0 0;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--aurora-pink);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.hero p {
  color: var(--lavender);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.hero-btn {
  display: inline-block;
  background: var(--aurora-pink);
  color: var(--deep-plum);
  padding: 14px 42px;
  border-radius: 50px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.hero-btn:hover { background: var(--rose); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,104,140,0.3); }

.aurora-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.ab-item {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 20px rgba(45,27,61,0.08);
  border-top: 4px solid var(--aurora-pink);
}

.ab-item .ab-icon { font-size: 2rem; margin-bottom: 0.6rem; }

.ab-item h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--deep-plum);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ab-item p { color: var(--text-muted); font-size: 0.88rem; }

.game-section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.game-section h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--deep-plum);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.game-frame {
  background: var(--deep-plum);
  border-radius: 16px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(45,27,61,0.12);
}

.game-frame iframe { width: 100%; height: 600px; border: none; display: block; }

.aurora-text {
  padding: 5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.aurora-text h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--warm-violet);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.aurora-text p { color: var(--text-muted); margin-bottom: 1rem; }

.shimmer-grid {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.shimmer-grid h2 {
  font-family: 'DM Serif Display', serif;
  color: var(--deep-plum);
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.sg-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.sg-item {
  background: white;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(45,27,61,0.06);
  display: flex;
  gap: 1rem;
  align-items: start;
}

.sg-item .sg-icon { font-size: 1.6rem; flex-shrink: 0; }

.sg-item h3 { font-family: 'DM Serif Display', serif; color: var(--warm-violet); font-size: 1rem; margin-bottom: 0.3rem; }
.sg-item p { color: var(--text-muted); font-size: 0.85rem; }

.content-page { padding: 4rem 2rem; max-width: 850px; margin: 2rem auto; background: white; border-radius: 20px; box-shadow: 0 4px 20px rgba(45,27,61,0.06); }

.content-page h1 {
  font-family: 'DM Serif Display', serif;
  color: var(--deep-plum);
  font-size: 2.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--aurora-pink);
}

.content-page h2 { font-family: 'DM Serif Display', serif; color: var(--warm-violet); font-size: 1.25rem; margin: 2rem 0 0.8rem; }
.content-page p, .content-page li { color: var(--text-muted); margin-bottom: 0.8rem; font-size: 0.92rem; }
.content-page ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }

.play-top {
  background: linear-gradient(140deg, var(--deep-plum), #4a2a60);
  padding: 5rem 2rem 2rem;
  text-align: center;
  color: var(--soft-white);
}

.play-top h1 { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--aurora-pink); margin-bottom: 0.8rem; }
.play-top p { color: var(--lavender); max-width: 550px; margin: 0 auto; }

.play-wrap { padding: 2rem; max-width: 1000px; margin: 0 auto; }

.play-note {
  background: white;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  box-shadow: 0 2px 10px rgba(45,27,61,0.06);
}

.site-footer {
  background: var(--deep-plum);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--lavender);
}

.ft-links { margin-bottom: 1rem; }
.ft-links h4 { font-family: 'DM Serif Display', serif; color: var(--aurora-pink); font-size: 0.95rem; margin-bottom: 0.5rem; }
.ft-links a { color: var(--lavender); text-decoration: none; margin: 0 0.7rem; font-size: 0.82rem; }
.ft-links a:hover { color: var(--aurora-pink); }
.ft-copy { font-size: 0.72rem; opacity: 0.5; }

.age-overlay {
  position: fixed; inset: 0;
  background: rgba(45,27,61,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-card {
  background: var(--soft-white);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.age-card h2 { font-family: 'DM Serif Display', serif; color: var(--deep-plum); font-size: 1.4rem; margin-bottom: 1rem; }
.age-card p { color: var(--text-muted); margin-bottom: 1.5rem; }

.age-btns { display: flex; gap: 1rem; justify-content: center; }

.age-btns button {
  padding: 11px 32px;
  border-radius: 50px;
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn-aurora { background: var(--aurora-pink); color: var(--deep-plum); }
.btn-aurora:hover { background: var(--rose); }
.btn-mist { background: #eee5f5; color: var(--text-dark); }
.btn-mist:hover { background: #ddd0e8; }

.age-denied { color: #c0392b; font-weight: 600; margin-top: 1rem; display: none; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 64px; right: 0;
    width: 240px;
    background: var(--deep-plum);
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    border-left: 1px solid rgba(232,164,200,0.2);
    transform: translateX(100%);
    transition: transform 0.3s;
    height: calc(100vh - 64px);
  }
  .nav-links.open { transform: translateX(0); }
  .hero h1 { font-size: 2rem; }
  .hero::after { display: none; }
  .aurora-badges { flex-direction: column; align-items: center; }
  .sg-items { grid-template-columns: 1fr; }
  .game-frame iframe { height: 380px; }
}
