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

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}


body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 940px;
  background-image: url("test.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}


main {
    flex: 1; 
}

footer {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0; 
}

.header {
  background: rgba(10, 10, 10, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  margin: 0 -20px;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.3s;
}

.close-btn:hover {
  opacity: 0.7;
}

.header-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
}

.logo-img {
  width: 120px;
  object-fit: contain;
}

.verified-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.brand-icon {
  color: #00c0c3;
  font-size: 20px;
}


.verified-badge {
  background: #00c0c3;
  color: #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.apply-btn-header {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.apply-btn-header:hover {
  background: #e6e6e6;
}


.hero {
  text-align: center;
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.hero-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto 30px auto;
  display: block;
  object-fit: contain;
}

.badge-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
}

.star-badge {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #00c0c3 0%, #00e5e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(0, 192, 195, 0.4);
}

.star-badge::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 192, 195, 0.2) 0%, transparent 70%);
}

.star-badge .checkmark {
  font-size: 48px;
  color: #000;
  font-weight: bold;
  z-index: 1;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: #b4b4b4;
  margin-bottom: 40px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle strong {
  color: #ffffff;
}

.subtle-text {
  display: block;
  margin-top: 8px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  width: 100%;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  min-width: 80px;
}

.countdown-number {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.countdown-label {
  font-size: 12px;
  color: #888;
  text-transform: lowercase;
}

.countdown-separator {
  font-size: 24px;
  color: #555;
}

.social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
  padding: 0 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
  min-width: 140px;
  max-width: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  white-space: nowrap;
  flex-shrink: 0;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.social-btn:active {
  transform: translateY(0);
}

.social-btn i {
  font-size: 20px;
}

.discord-btn {
  background-color: #5865F2;
}

.discord-btn:hover {
  background-color: #4752C4;
}

.whatsapp-btn {
  background-color: #25D366;
}

.whatsapp-btn:hover {
  background-color: #20BA5A;
}

.phone-btn {
  background-color: #ffffff;
  color: #000000;
}

.phone-btn:hover {
  background-color: #e6e6e6;
}

.phone-btn i {
  color: #000000;
}


.plan-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-btn.active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.toggle-text {
  white-space: nowrap;
}

.offer-badge {
  font-size: 10px;
  color: #00c0c3;
  font-weight: 600;
  background: rgba(0, 192, 195, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: rgba(0, 192, 195, 0.3);
  box-shadow: 0 8px 32px rgba(0, 192, 195, 0.1);
}



.card-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.discount-badge {
  background: rgba(0, 192, 195, 0.15);
  color: #00c0c3;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}

.pricing {
  margin-bottom: 24px;
}

.original-price {
  color: #666;
  text-decoration: line-through;
  font-size: 18px;
  margin-bottom: 8px;
}

.discounted-price {
  font-size: 42px;
  font-weight: 700;
  color: #00c0c3;
  margin-bottom: 8px;
}

.price-period {
  font-size: 18px;
  color: #b4b4b4;
  font-weight: 400;
}

.annual-pricing {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
}

.apply-btn {
  width: 100%;
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 14px 24px;
  border-radius: 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 32px;
}

.apply-btn:hover {
  background: #e6e6e6;
  transform: scale(1.02);
}

.features-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #b4b4b4;
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.features-list .checkmark {
  color: #00c0c3;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .header {
    padding: 15px 20px;
  }

  .header-title {
    position: relative;
    left: auto;
    transform: none;
  }

  .container {
    min-height: 100vh;
    padding: 20px 15px;
    width: 100%;
    max-width: 100%;
  }

  .hero-logo {
    max-width: 200px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
    padding: 0 10px;
    max-width: 100%;
  }

  .countdown {
    gap: 4px;
    padding: 0 10px;
  }

  .countdown-item {
    min-width: 60px;
    padding: 12px 16px;
  }

  .countdown-number {
    font-size: 24px;
  }

  .social-buttons {
    gap: 12px;
    margin-top: 15px;
    padding: 0 10px;
  }

  .social-btn {
    min-width: 120px;
    max-width: calc(50% - 6px);
    padding: 10px 16px;
    font-size: 14px;
    flex: 1 1 auto;
  }

  .social-btn span {
    font-size: 13px;
  }

  .social-btn i {
    font-size: 18px;
  }

  .pricing-section {
    grid-template-columns: 1fr;
  }

  .discounted-price {
    font-size: 36px;
  }

  .toggle-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .offer-badge {
    font-size: 9px;
    padding: 2px 6px;
  }
}
