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

body {
  font-family: system-ui, sans-serif;
  color: #333;
  background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.section {
  display: none;
  background: linear-gradient(to bottom, #ffffff, #fff5f5);
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(255, 8, 68, 0.3);
  margin-bottom: 20px;
  border: 4px solid #ff0844;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.section:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 8, 68, 0.4);
}

.section.active {
  display: block;
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(255, 8, 68, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #ff0844, #ffb199);
  transition: width 0.5s ease;
  animation: progressPulse 2s infinite;
}

.intro-text {
  font-size: 1.4em;
  text-align: center;
  margin: 20px 0;
  font-weight: 600;
  color: #ff0844;
}

.question-description {
  font-size: 1.3em;
  margin: 20px 0;
  color: #444;
  text-align: center;
  font-weight: 500;
}

.benefits-preview {
  background: linear-gradient(45deg, #ff0844, #ff6b6b);
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
  box-shadow: 0 5px 15px rgba(255, 8, 68, 0.3);
  animation: glow 2s infinite;
}

.testimonials {
  margin: 30px 0;
}

.testimonial {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  margin: 15px 0;
  text-align: center;
  border: 2px solid #ff0844;
  box-shadow: 0 5px 15px rgba(255, 8, 68, 0.1);
}

.rating {
  color: #ff0844;
  font-size: 1.2em;
  margin-top: 10px;
}

.countdown {
  text-align: center;
  margin: 30px 0;
}

.timer {
  font-size: 2.5em;
  color: #ff0844;
  font-weight: 800;
  animation: pulse 1s infinite;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.security-badges span {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  color: #444;
  border: 2px solid #ff0844;
}

.last-sales {
  margin-top: 30px;
  text-align: center;
  font-weight: 600;
  color: #ff0844;
  animation: slideIn 0.5s ease-out;
}

.urgency-text {
  text-align: center;
  color: #ff0844;
  font-weight: 700;
  margin-top: 15px;
  animation: blink 1s infinite;
}

@keyframes progressPulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.coins-animation {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
}

.coin {
  font-size: 2em;
  animation: coinBounce 1s infinite;
  display: inline-block;
  margin: 0 5px;
}

@keyframes coinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

.celebration {
  text-align: center;
  margin: 20px 0;
}

.celebration .coin {
  font-size: 3em;
  animation: celebrationSpin 2s infinite;
}

@keyframes celebrationSpin {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.5) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(100px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
  80% {
    transform: scale(0.89);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

h1 {
  color: #ff0844;
  font-size: 3em;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 3px 3px 6px rgba(255, 8, 68, 0.2);
  line-height: 1.2;
  background: linear-gradient(45deg, #ff0844, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  color: #ff0844;
  margin-bottom: 25px;
  font-size: 2em;
  text-shadow: 2px 2px 4px rgba(255, 8, 68, 0.15);
}

.highlight {
  font-size: 1.6em;
  background: linear-gradient(45deg, #ff0844, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin: 25px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 8, 68, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 8, 68, 0.8);
  }
}

.options {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quiz-button {
  padding: 25px;
  border: 4px solid #ff0844;
  border-radius: 15px;
  background: linear-gradient(to right, white 50%, #ff0844 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  color: #ff0844;
  font-size: 1.3em;
  cursor: pointer;
  transition: all 0.4s ease;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quiz-button:hover {
  background-position: right bottom;
  color: white;
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 8, 68, 0.3);
}

.cta-button {
  display: block;
  width: 100%;
  padding: 30px;
  background: linear-gradient(45deg, #ff0844, #ff6b6b);
  color: white;
  border: none;
  border-radius: 15px;
  font-size: 1.8em;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin: 35px 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(255, 8, 68, 0.4);
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background: linear-gradient(45deg, #ff0033, #ff0844);
  transform: scale(1.08);
  box-shadow: 0 15px 30px rgba(255, 8, 68, 0.6);
}

.benefits {
  background: linear-gradient(135deg, #fff5f5, #ffe9e9);
  padding: 30px;
  border-radius: 15px;
  margin: 25px 0;
  border: 3px dashed #ff0844;
  box-shadow: inset 0 0 15px rgba(255, 8, 68, 0.1);
}

.benefits h3 {
  color: #ff0844;
  font-size: 1.6em;
  margin-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}

.benefits ul {
  list-style: none;
  margin-top: 20px;
}

.benefits li {
  margin: 20px 0;
  font-size: 1.3em;
  padding-left: 35px;
  position: relative;
  font-weight: 600;
}

.benefits li:before {
  content: "💎";
  position: absolute;
  left: 0;
  animation: bounce 1s infinite;
}

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

.price-box {
  text-align: center;
  margin: 35px 0;
  padding: 30px;
  background: linear-gradient(135deg, #fff5f5, #ffe9e9);
  border-radius: 15px;
  border: 4px solid #ff0844;
  box-shadow: 0 10px 25px rgba(255, 8, 68, 0.2);
  transform: scale(1);
  transition: transform 0.3s ease;
}

.price-box:hover {
  transform: scale(1.03);
}

.old-price {
  color: #666;
  font-size: 1.6em;
  text-decoration: line-through;
  opacity: 0.8;
}

.new-price {
  color: #ff0844;
  font-size: 4em;
  font-weight: 800;
  margin: 20px 0;
  text-shadow: 3px 3px 6px rgba(255, 8, 68, 0.3);
  background: linear-gradient(45deg, #ff0844, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.urgency {
  color: #ff0844;
  font-weight: 800;
  font-size: 1.4em;
  animation: blink 1.5s infinite;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guarantee {
  text-align: center;
  color: #444;
  font-size: 1.3em;
  margin-top: 25px;
  font-weight: 700;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border: 2px solid #ff0844;
}

.pulse {
  animation: megaPulse 2s infinite;
}

@keyframes megaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255, 8, 68, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 8, 68, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(255, 8, 68, 0.4);
  }
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

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

@media (max-width: 600px) {
  .container {
    padding: 10px;
  }
  
  h1 {
    font-size: 2em;
  }
  
  .section {
    padding: 25px;
  }
  
  .cta-button {
    font-size: 1.4em;
    padding: 20px;
  }
  
  .new-price {
    font-size: 3em;
  }
  
  .benefits li {
    font-size: 1.1em;
  }
  
  .security-badges {
    flex-direction: column;
    align-items: center;
  }
}