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

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

:root {
  --lavender: #c4b5fd;
  --rose: #fda4af;
  --sky: #93c5fd;
  --mint: #86efac;
  --peach: #fed7aa;
  --bg: #faf5ff;
  --card: #ffffff;
  --text: #4c3a6e;
  --text-soft: #8b7aab;
  --gradient: linear-gradient(135deg, #e0d4fc 0%, #fce7f3 50%, #dbeafe 100%);
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--bg); color: var(--text); line-height: 1.8; }
h1, h2, h3, h4 { font-family: 'Quicksand', sans-serif; font-weight: 700; }
a { color: var(--lavender); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--rose); }

/* NAV */
.pastel-nav {
  position: fixed; top: 0; width: 100%; z-index: 1000; height: 66px;
  background: rgba(250,245,255,0.92); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between; padding: 0 2rem;
  border-bottom: 2px solid var(--lavender);
}
.pn-logo { display: flex; align-items: center; gap: 10px; }
.pn-logo svg { width: 32px; height: 32px; }
.pn-logo span { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--text); }
.pn-links { display: flex; gap: 1.6rem; list-style: none; }
.pn-links a { font-size: 0.85rem; font-weight: 600; color: var(--text-soft); }
.pn-links a:hover, .pn-links a.here { color: var(--text); }
.pn-ham { display: none; background: none; border: none; cursor: pointer; }
.pn-ham span { display: block; width: 22px; height: 2.5px; background: var(--text); margin: 4px 0; border-radius: 2px; }

/* HERO GRADIENT */
.ether-hero {
  padding: 110px 2rem 5rem; text-align: center;
  background: var(--gradient);
  border-radius: 0 0 40px 40px;
}
.ether-hero h1 { font-size: 2.8rem; color: var(--text); margin-bottom: 1rem; }
.ether-hero h1 .pop { background: linear-gradient(90deg, var(--lavender), var(--rose)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ether-hero > p { max-width: 680px; margin: 0 auto 2rem; color: var(--text-soft); font-size: 1.05rem; }
.bubble-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.8rem; }
.bubble {
  padding: 0.5rem 1.3rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  background: var(--card); color: var(--text); box-shadow: 0 2px 8px rgba(196,181,253,0.3);
}

/* GAME */
.game-cloud { max-width: 960px; margin: 0 auto; padding: 3rem 2rem; }
.game-cloud h2 { text-align: center; font-size: 1.8rem; margin-bottom: 1.2rem; color: var(--text); }
.cloud-frame {
  width: 100%; padding-top: 64%; position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(196,181,253,0.25); border: 2px solid var(--lavender);
}
.cloud-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ROUNDED CARDS */
.soft-grid {
  max-width: 1100px; margin: 3rem auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.soft-card {
  background: var(--card); border-radius: 20px; padding: 2rem; text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05); transition: 0.3s;
  border: 1px solid rgba(196,181,253,0.2);
}
.soft-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(196,181,253,0.2); }
.soft-card .ico { font-size: 2.2rem; margin-bottom: 0.6rem; }
.soft-card h3 { font-size: 1rem; color: var(--text); margin-bottom: 0.4rem; }
.soft-card p { font-size: 0.85rem; color: var(--text-soft); }

/* PASTEL BAND */
.pastel-band {
  background: var(--gradient); padding: 4rem 2rem; margin: 3rem 0;
  border-radius: 40px; max-width: 1200px; margin-left: auto; margin-right: auto;
}
.pastel-band h2 { text-align: center; font-size: 1.8rem; color: var(--text); margin-bottom: 1rem; }
.pastel-band p { max-width: 750px; margin: 0 auto 1rem; color: var(--text-soft); text-align: center; }

/* PAGE */
.ether-page { max-width: 860px; margin: 0 auto; padding: 110px 2rem 4rem; }
.ether-page h1 { font-size: 2rem; color: var(--text); margin-bottom: 1rem; }
.ether-page h3 { font-size: 1.1rem; color: var(--lavender); margin: 1.8rem 0 0.6rem; }
.ether-page p { color: var(--text-soft); margin-bottom: 1rem; }
.ether-page ul { margin: 0.6rem 0 1rem 1.5rem; }
.ether-page li { color: var(--text-soft); margin-bottom: 0.3rem; }

/* PLAY */
.play-cloud { padding: 110px 2rem 2rem; text-align: center; }
.play-cloud h1 { font-size: 2rem; color: var(--text); margin-bottom: 0.5rem; }
.play-cloud p { color: var(--text-soft); max-width: 580px; margin: 0 auto; }
.play-tips {
  max-width: 660px; margin: 2rem auto; background: var(--card); border-radius: 20px;
  padding: 1.5rem 2rem; box-shadow: 0 4px 12px rgba(0,0,0,0.04); text-align: left;
}
.play-tips h3 { color: var(--text); margin-bottom: 0.5rem; }
.play-tips li { color: var(--text-soft); font-size: 0.88rem; margin-bottom: 0.3rem; }

/* FOOTER */
.dreamy-footer {
  background: var(--gradient); padding: 3rem 2rem; text-align: center; margin-top: 4rem;
  border-radius: 40px 40px 0 0;
}
.df-nav { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.df-nav a { color: var(--text-soft); font-size: 0.88rem; }
.df-resp { margin-bottom: 1rem; }
.df-resp p { font-size: 0.82rem; color: var(--text-soft); margin-bottom: 0.3rem; }
.df-resp a { color: var(--text); font-size: 0.82rem; margin: 0 0.4rem; }
.df-copy { font-size: 0.72rem; color: var(--text-soft); opacity: 0.5; }

/* AGE */
.age-mist {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(250,245,255,0.97); display: flex; align-items: center; justify-content: center;
}
.age-mist.clear { display: none; }
.age-bubble {
  background: var(--card); border-radius: 28px; padding: 2.5rem; text-align: center;
  max-width: 420px; width: 90%; box-shadow: 0 12px 40px rgba(196,181,253,0.3);
  border: 2px solid var(--lavender);
}
.age-bubble h2 { font-size: 1.4rem; color: var(--text); margin-bottom: 0.7rem; }
.age-bubble p { color: var(--text-soft); margin-bottom: 1.5rem; font-size: 0.92rem; }
.age-pair { display: flex; gap: 1rem; justify-content: center; }
.age-pair button {
  padding: 0.65rem 2rem; border-radius: 50px; font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 0.95rem; cursor: pointer; border: none; transition: 0.3s;
}
.ae-y { background: linear-gradient(135deg, var(--lavender), var(--rose)); color: #fff; }
.ae-y:hover { opacity: 0.85; }
.ae-n { background: #f1f5f9; color: var(--text-soft); }
.ae-n:hover { background: #fee2e2; color: #b91c1c; }

@media (max-width: 768px) {
  .pn-ham { display: block; }
  .pn-links {
    position: fixed; top: 66px; left: 0; width: 100%; background: rgba(250,245,255,0.97);
    flex-direction: column; padding: 1.5rem 2rem; gap: 1rem;
    transform: translateY(-120%); transition: 0.3s; border-bottom: 2px solid var(--lavender);
  }
  .pn-links.vis { transform: translateY(0); }
  .ether-hero h1 { font-size: 1.9rem; }
  .soft-grid { grid-template-columns: 1fr; }
  .cloud-frame { padding-top: 75%; border-radius: 16px; }
  .ether-hero { border-radius: 0 0 24px 24px; }
  .pastel-band { border-radius: 24px; margin: 3rem 1rem; }
}
