@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

:root {
  --primary-glow: rgba(255, 0, 0, 0.6);
  --accent-red: #FF0000;
  --bg-color: #000000;
  --text-white: #FFFFFF;
  --text-gray: #CCCCCC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 0;
}

.scroll-spacer {
  width: 100%;
  height: 25vh;
  /* Responsive vertical space defined by viewport height */
  min-height: 150px;
  background-color: transparent;
}

.main-container {
  width: 100%;
  max-width: 480px;
  /* Mobile-focused width */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px;
  margin: auto;
}

/* --- Urgency Section --- */
/* --- Urgency Section --- */
.top-alert-bar {
  width: 100%;
  background-color: #050000;
  border-bottom: 2px solid var(--accent-red);
  box-shadow: 0 4px 20px rgba(255, 0, 0, 0.4);
  padding: 20px;
  text-align: center;
  z-index: 100;
  margin-bottom: 20px;
}

.top-alert-bar p {
  color: var(--accent-red);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: alertPulse 2s infinite ease-in-out;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.highlight-red {
  color: var(--accent-red);
}

@keyframes alertPulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.02);
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.8);
  }

  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
  }

  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

/* --- Typography --- */
.headline {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 8px;
}

.sub-headline {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 24px;
}

/* --- VSL Section --- */
.vsl-wrapper {
  width: 100%;
  position: relative;
  border-radius: 20px;
  /* Red glow effect */
  box-shadow: 0 0 30px var(--primary-glow);
  margin-bottom: 24px;
  overflow: hidden;
}

.vsl-placeholder {
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: #111;
  /* Fallback/Placeholder color */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

/* If user inserts iframe later - responsive video generic helper */
.video-responsive {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Delayed CTA --- */
.delayed-cta {
  display: none;
}

.delayed-cta.visible {
  display: block;
  animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* --- CTA Section --- */
.cta-button {
  background: linear-gradient(90deg, #27C93F 0%, #17A02E 100%);
  color: white;
  border: none;
  font-size: 1.1rem;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 50px;
  width: 100%;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(39, 201, 63, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(39, 201, 63, 0.6);
}

.cta-button:active {
  transform: translateY(1px);
}

.disclaimer-text {
  font-size: 0.8rem;
  color: #666;
  margin-top: 12px;
}

/* Responsive adjustments */
@media (min-width: 600px) {
  .headline {
    font-size: 2.2rem;
  }
}