/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
  background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/image-wEZcJDW1Wldh8UgsEI1lo4SfxkNGs0.png");
  background-repeat: repeat;
  background-size: auto;
  background-position: top left;
}

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

/* Hero Section */
.hero-section {
  padding: 80px 0;
  text-align: center;
  /* Removed position relative to prevent stacking context issues */
}

.hero-content {
  /* Removed position relative and z-index to prevent layering conflicts */
}

.key-success {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.hero-coin {
  margin-bottom: 32px;
}

.coin-image {
  width: 128px;
  height: 128px;
  margin: 0 auto;
}

.main-title {
  font-size: 4rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 48px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.badge {
  background: #fff;
  color: #1e40af;
  border: 2px solid #1e40af;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.badge:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

.btn-primary {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Added will-change property for better scroll performance */
  will-change: transform;
}

.btn-primary:hover {
  background: #1e40af;
  /* Reduced transform to prevent scroll interference */
  transform: translateY(-1px);
}

/* CTA Section */
.cta-section {
  padding: 64px 0;
  /* Removed semi-transparent background that could cause layering issues */
  background: #f8fafc;
  text-align: center;
  /* Removed position relative and z-index that was causing overlay issues */
}

.cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
}

.cta-subtitle {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 20px;
  color: #000;
  margin-bottom: 24px;
}

.discount-section {
  margin-bottom: 24px;
}

.discount-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
}

.discount-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #dc2626;
  animation: pulse 2s infinite;
}

.btn-secondary {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  /* Added will-change for better performance */
  will-change: transform;
}

.btn-secondary:hover {
  background: #1e40af;
  /* Removed transform completely to prevent any scroll interference */
}

.cta-final {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }
}

.pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.best-seller {
  border-color: #1e40af;
  background: rgba(30, 64, 175, 0.05);
  transform: scale(1.05);
}

.best-seller-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e3a8a;
  color: white;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: bold;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
}

.card-coin {
  width: 96px;
  height: 96px;
  margin: 16px auto;
}

.card-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
}

.card-bonus {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.card-collectible {
  font-size: 14px;
  color: #000;
  margin-bottom: 24px;
}

.btn-get-now {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.btn-get-now:hover {
  background: #1e40af;
}

.card-shipping {
  font-size: 12px;
  color: #000;
}

/* Guarantee Section */
.guarantee-section {
  padding: 64px 0;
  background: rgba(248, 250, 252, 0.3);
  text-align: center;
}

.guarantee-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
}

.guarantee-subtitle {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 32px;
}

.guarantee-text {
  font-size: 14px;
  color: #1d4ed8;
  max-width: 800px;
  margin: 0 auto 32px;
}

.contact-email {
  font-size: 18px;
  font-weight: 600;
  color: #1e40af;
}

/* Trust Section */
.trust-section {
  padding: 64px 0;
}

.trust-header {
  text-align: center;
  margin-bottom: 48px;
}

.trust-title {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 16px;
}

.trust-description {
  font-size: 20px;
  color: #666;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #eff6ff;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid #2563eb;
}

.trust-icon {
  font-size: 32px;
}

.trust-badge-title {
  font-weight: bold;
  color: #1e40af;
}

.trust-badge-desc {
  font-size: 14px;
  color: #2563eb;
}

.btn-journey {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 16px 48px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.btn-journey:hover {
  background: #1e40af;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: rgba(248, 250, 252, 0.3);
}

.faq-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.faq-answer {
  color: #000;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 48px 0;
  text-align: center;
}

.footer-coin {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e40af;
  margin-bottom: 8px;
}

.footer-description {
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 2rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
  }
}
