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

body {
  height: 100vh;
  overflow: hidden;
  background: #04050a;
  color: #ffffff;
  font-family: "Inter", "Segoe UI", sans-serif;
}

/* Animated gradient background */
.bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #120458,
    #1b1f3b,
    #0f2027,
    #2c5364
  );
  background-size: 400% 400%;
  animation: gradientMove 16s ease infinite;
  z-index: 0;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Center content */
.container {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Headline (UPDATED FONT) */
.headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.4px;

  background: linear-gradient(
    90deg,
    #f5f7ff,
    #c7d2ff,
    #9aa8ff,
    #c7d2ff
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 25px 70px rgba(120,140,255,0.35);

  opacity: 0;
  animation: fadeUp 1.4s ease forwards;
}

/* Decorative line */
.line {
  width: 90px;
  height: 3px;
  margin: 40px 0;
  background: linear-gradient(
    90deg,
    #8b5cf6,
    #6366f1,
    #38bdf8
  );
  border-radius: 3px;

  opacity: 0;
  animation: fadeUp 1.4s ease forwards;
  animation-delay: 0.3s;
}

/* Brand name */
.brand {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;

  background: linear-gradient(
    90deg,
    #8b5cf6,
    #6366f1,
    #38bdf8
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  opacity: 0;
  animation: fadeUp 1.4s ease forwards;
  animation-delay: 0.6s;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 480px) {
  .line {
    margin: 28px 0;
  }
}
