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

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

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

header {
  text-align: center;
  background-color: #004d40;
  color: white;
  padding: 20px 15px;
  margin-bottom: 30px;
}

header h1 {
  font-size: 1.4em;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.3;
}

header h2 {
  font-size: 1.1em;
  font-weight: normal;
  line-height: 1.3;
  opacity: 0.9;
}

.main-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.offer-text {
  font-size: 0.9em;
  margin-bottom: 20px;
  line-height: 1.4;
}

.offer-text .highlight {
  font-size: 1.3em;
  color: #004d40;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 25px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.product-box {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin: 20px 0;
  text-align: center;
}

.product-header {
  background-color: #004d40;
  color: white;
  padding: 30px 20px;
  margin: -15px -15px 15px -15px;
  border-radius: 8px 8px 0 0;
  text-align: center;
}

.product-header h3 {
  font-size: 1.4em;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.product-image {
  max-width: 100%;
  height: auto;
  margin: 15px 0;
}

.cta-text {
  font-size: 1em;
  color: #004d40;
  margin: 20px 0 15px;
  font-weight: 600;
}

.cta-button {
  background: linear-gradient(45deg, #2ecc71, #27ae60);
  color: white;
  border: none;
  padding: 20px 30px;
  font-size: 1.1em;
  border-radius: 50px;
  cursor: pointer;
  margin: 10px auto;
  width: 100%;
  max-width: 400px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  }
}

.cta-button:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
  background: linear-gradient(45deg, #27ae60, #2ecc71);
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(46, 204, 113, 0.3);
}

.cta-button::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: rotate(45deg);
  transition: all 0.3s ease;
  opacity: 0;
}

.cta-button:hover::after {
  opacity: 1;
  transform: rotate(45deg) translate(50%, 50%);
}

.timer-container {
  margin: 25px 0 15px;
  text-align: center;
}

.timer-container h4 {
  color: #e74c3c;
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.countdown {
  display: inline-flex;
  gap: 15px;
  background: linear-gradient(45deg, #c0392b, #e74c3c);
  padding: 12px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.time-block {
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 65px;
}

.time-block span:first-child {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.time-block span:last-child {
  font-size: 0.8em;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  gap: 10px;
}

.feature {
  flex: 1;
  text-align: center;
  font-size: 0.8em;
  padding: 10px;
  min-width: 150px;
}

.feature h4 {
  margin: 8px 0 4px;
  color: #004d40;
  font-weight: 600;
}

.feature p {
  margin: 0;
  line-height: 1.3;
  color: #666;
}

.feature img {
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
  opacity: 0.8;
}

.important-info {
  background-color: #fff;
  padding: 20px;
  margin: 20px 0;
  text-align: left;
}

.important-info h4 {
  color: #333;
  margin-bottom: 10px;
}

.important-info ol {
  margin-left: 20px;
  font-size: 0.9em;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
  display: grid;
  gap: 15px;
}

.benefits-list li {
  font-size: 1.1em;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list li:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefits-list li.step-done {
  background-color: rgba(152, 251, 152, 0.15);
  border-color: rgba(152, 251, 152, 0.3);
}

.step {
  color: #98fb98;
  font-weight: bold;
  font-size: 0.9em;
  margin-bottom: 8px;
  display: block;
  letter-spacing: 1px;
}

.step-done .step {
  color: #98fb98;
}

.price-tag {
  background-color: #004d40;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  margin: 10px auto;
  max-width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-tag p:first-child {
  font-size: 0.9em;
  margin-bottom: 0;
  opacity: 0.95;
}

.price {
  font-size: 2em;
  font-weight: bold;
  color: #98fb98;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-top: -2px;
}

footer {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 0.8em;
  background-color: #004d40;
  color: white;
}

@media (max-width: 600px) {
  .container {
    padding: 0;
  }

  .main-content {
    padding: 0 10px;
  }

  .features {
    flex-direction: column;
  }
}

.offer-details {
  margin: 12px auto;
  max-width: 260px;
  text-align: left;
  font-size: 0.8em;
  line-height: 1.3;
  padding: 0 10px;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 12px;
}

.offer-details p {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.kit-title {
  color: #ff5f5f;
  font-size: 0.95em;
}

.benefit {
  color: #2ecc71;
  display: flex;
  align-items: center;
  font-size: 0.9em;
}

.bonus {
  color: #ff9f43;
  font-size: 0.9em;
}

.offer-details .emoji {
  flex-shrink: 0;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit .emoji {
  color: #2ecc71;
  font-size: 1em;
}

.notification-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.notification {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 12px 16px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(100px);
  opacity: 0;
  animation: slideIn 0.5s ease forwards;
}

.notification-content {
  font-size: 0.85em;
  line-height: 1.4;
}

.notification-text {
  margin: 0 0 4px 0;
  color: #2c3e50;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.notification-time {
  margin: 0;
  color: #7f8c8d;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status,
.time-icon {
  display: inline-block;
  font-size: 1.1em;
}

@keyframes slideIn {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100px);
    opacity: 0;
  }
}
