/* ========== Reset & Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  min-height: 100vh;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Songti SC",
    "Noto Serif SC", serif;
  background: radial-gradient(circle at 50% 20%, #0a1630 0%, #030614 70%, #01030a 100%);
  color: #f5f7ff;
  line-height: 1.8;
}

/* ========== Cosmic Background Layers ========== */

.stars {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.9), transparent),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.8px 1.8px at 40% 80%, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.2px 1.2px at 85% 20%, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 30% 50%, rgba(255,210,120,0.9), transparent),
    radial-gradient(1.8px 1.8px at 60% 30%, rgba(255,200,110,0.8), transparent);
  animation: twinkle 12s ease-in-out infinite alternate;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

@keyframes twinkle {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.04); }
}

.galaxy {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(255,220,120,0.4), transparent 65%),
    radial-gradient(ellipse at 50% 60%, rgba(120,160,255,0.25), transparent 75%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.buddha-light {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,230,150,0.3), transparent 70%),
    radial-gradient(circle at 50% 80%, rgba(255,200,120,0.22), transparent 80%);
  mix-blend-mode: screen;
  animation: pulse 7s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse {
  0% { opacity: 0.45; }
  100% { opacity: 0.95; }
}

/* ========== Layout Containers ========== */

.container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* ========== Typography ========== */

.title-main {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #f7fbff;
  text-shadow: 0 0 18px rgba(255,220,120,0.45);
}

.subtitle-main {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.4rem;
  color: #ffe9c7;
  text-shadow: 0 0 12px rgba(255,200,120,0.35);
}

h1 {
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ffe9c7;
  text-shadow: 0 0 10px rgba(255,200,120,0.3);
}

.section-title {
  font-size: 1.2rem;
  margin: 2.2rem 0 0.8rem;
  color: #ffe9c7;
}

/* ========== Buttons ========== */

.buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,220,120,0.7);
  color: #fff7e6;
  background: rgba(10,20,40,0.6);
  backdrop-filter: blur(8px);
  text-decoration: none;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.btn:hover {
  border-color: #ffffff;
  box-shadow: 0 0 18px rgba(255,220,120,0.8);
  transform: translateY(-1px);
  background: rgba(20,40,80,0.9);
}

/* ========== Footer ========== */

.footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  opacity: 0.6;
  color: #ffe9c7;
  line-height: 1.6;
}
