/* ---------- RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #000;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* ---------- PREMIUM DARK BACKGROUND ---------- */
.bg-stars {
  position: fixed;
  inset: 0;
  /* Deep Red glow only at the very top, fading into pure black */
  background: 
    radial-gradient(circle at top, rgba(223, 2, 1, 0.45) 0%, transparent 65%),
    linear-gradient(to bottom, #1a0000 0%, #000000 40%, #000000 100%);
  z-index: -1;
}


/* ---------- HERO LAYOUT ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  padding: 50px 20px 40px;
  text-align: center;
}

.brand { font-size: 42px; letter-spacing: 6px; font-weight: 700; }
.brand span { color: #df0201; }

.subtitle { font-size: 16px; margin: 8px 0; font-weight: 400; }
.star { color: #ffcc00; }

.headline {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 20px;
}


/* Typewriter Cursor Effect */
.headline::after {
  content: "|";
  margin-left: 5px;
  color: #df0201;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Ensure the headline has a fixed height so the page doesn't jump while typing */
.headline {
  min-height: 80px; 
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: white;
}

/* ---------- BIGGER AVATAR ---------- */
.avatar-display {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.avatar-hero {
  width: 320px; /* Much larger size */
  max-width: 85vw;
  height: auto;
  filter: drop-shadow(0 0 50px rgba(223, 2, 1, 0.4));
  transition: opacity 0.6s ease-in-out;
}

/* ---------- CTA BUTTON ---------- */
.cta-button {
  display: block;
  width: 100%;
  max-width: 340px;
  padding: 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  color: white;
  text-align: center;
  
  /* Gradient: Black/Dark Red to Bright Red */
  background: linear-gradient(90deg, #1a0000 0%, #df0201 100%);
  box-shadow: 0 12px 35px rgba(223, 2, 1, 0.4);
}