@keyframes fadeFlash {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes nameReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.glow-sync {
  box-shadow: 0 0 60px rgba(255,210,140,0.9) !important;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500&display=swap');


body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top, #1a2a6c, #b21f1f, #fdbb2d);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

/* Center wrapper */
.center {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card */
.card {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  padding: clamp(30px, 5vw, 55px);
  border-radius: 24px;
  text-align: center;
  width: 100%;
  max-width: 440px;
  animation: floatIn 1.6s ease;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* Typography */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 30PX;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

p {
  font-size: clamp(0.95rem, 3.5vw, 1.1rem);
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.95;
}

/* Button */
button {
  margin-top: 30px;
  padding: 14px 40px;
  font-size: clamp(0.9rem, 3.5vw, 1rem);
  font-family: 'Poppins', sans-serif;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #ff512f, #f09819);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  touch-action: manipulation;
}

button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

button:active {
  transform: scale(0.97);
}

/* Glow for final page */
.glow {
  animation: glowPulse 2.5s infinite;
}

/* Animations */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 20px rgba(255,200,120,0.45); }
  50% { box-shadow: 0 0 50px rgba(255,200,120,0.9); }
  100% { box-shadow: 0 0 20px rgba(255,200,120,0.45); }
}

/* 📱 Extra Mobile Polish */
@media (max-width: 480px) {
  .card {
    border-radius: 20px;
  }
  button {
    width: 100%;
  }
}
/* 🎥 Background Video */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay for readability */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
