* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.headline {
  color: #ffd400;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.subheadline {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.subheadline span {
  color: #ffd400;
  font-weight: bold;
}

.ai-box {
  background: #111;
  border: 2px solid #ffd400;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.ai-box span {
  color: #ffd400;
}

.offer {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.urgency {
  color: #ff4d4d;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.cta-text {
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-block;
  background: #ffd400;
  color: #000;
  padding: 16px 22px;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 212, 0, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(255, 212, 0, 0.9);
}

.note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #bbb;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}


.cta-btn {
  display: inline-block;
  background: #ffd400;
  color: #000;
  padding: 16px 22px;
  border-radius: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 212, 0, 0.6);
  animation: bounce 2s infinite;
}
