* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  background: radial-gradient(
      circle at top right,
      rgba(255, 120, 80, 0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(180, 80, 255, 0.25),
      transparent 45%
    ),
    linear-gradient(135deg, #0b0d1a, #0f1025);
  min-height: 100vh;
  color: #ffffff;
}

/* HERO */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px;
}

.hero-content {
  text-align: center;
  max-width: 720px;
}

/* LOGO */

.logo img {
  width: 140px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 25px rgba(255, 120, 80, 0.6));
}

/* TEXT */

h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 1.4rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

/* BUTTONS */

.actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn {
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ff7a45, #ff3d6e);
  color: white;
  box-shadow: 0 10px 30px rgba(255, 80, 80, 0.35);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 80, 80, 0.55);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  backdrop-filter: blur(6px);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.08);
}
