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

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #c084fc, #a78bfa, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleFloat 14s ease-in-out infinite;
}

.subtitle {
  font-size: clamp(1.25rem, 5vw, 1.8rem);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #cbd5e1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s forwards 0.5s;
}

.message {
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2.8rem;
  color: #94a3b8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s forwards 0.9s;
}

.video-wrapper {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.7),
              0 10px 20px -5px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s forwards 1.3s;
  margin-bottom: 2rem;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.enjoy-text {
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-style: italic;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.2s forwards 1.7s;
}

.loader {
  width: 70px;
  height: 70px;
  border: 5px solid #334155;
  border-top: 5px solid #a78bfa;
  border-radius: 50%;
  animation: spin 1.4s linear infinite;
  opacity: 0;
  animation: fadeUp 1s forwards 2s, spin 1.4s linear infinite;
  margin: 1.5rem auto;
}

footer {
  margin-top: auto;
  padding: 2.5rem 0 1.5rem;
  font-size: 0.95rem;
  color: #64748b;
  opacity: 0;
  animation: fadeUp 1.2s forwards 2.3s;
}

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

@keyframes titleFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mobile adjustments */
@media (max-width: 640px) {
  h1 {
    letter-spacing: -2px;
  }
  .video-wrapper {
    max-width: 100%;
  }
}
