      /* Global Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(80deg, #ff4e50, #f9d423);
  color: white;
}

/* Hero Section */
#hero {
  background: linear-gradient(90deg, #000000, #ff2d2d);
  color: white;
  padding: 20px;
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  margin: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(182, 81, 81, 0.3);
  cursor: pointer;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  border-bottom: 3px solid #ffffff44;
}

/* 💥 Hover effect with new colors */
#hero:hover {
  background: linear-gradient(90deg, #ff512f, #dd2476); /* orange-pink */
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  text-shadow: 0 0 8px #fff, 0 0 12px #f0f;
}


/* Second Section */
#second {
  padding: 20px;
  font-size: 20px;
  text-align: center;
  color: rgb(7, 3, 3);
}

/* Image Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 40px 20px;
  max-width: 1300px;
  margin: auto;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* Button */
.glow-button {
  display: block;
  width: fit-content;
  margin: 30px auto;
  padding: 18px 50px;
  font-size: 24px;
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.glow-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.4);
}

.glow-button del {
  color: #dddddd;
  margin-right: 10px;
  font-weight: normal;
  font-size: 20px;
}

/* Headings */
h1 {
  color: white;
  background: linear-gradient(90deg, #ff6ec4, #7873f5);
  padding: 20px 30px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

h1:hover {
  background: linear-gradient(90deg, #ff0080, #7928ca);
  transform: scale(1.02);
  transition: 0.3s ease;
}

h2 {
  color: white;
  background: linear-gradient(90deg, #43cea2, #185a9d);
  padding: 15px 25px;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin: 20px auto;
  border-radius: 8px;
  max-width: 90%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

h2:hover {
  background: linear-gradient(90deg, #11998e, #38ef7d);
  transform: scale(1.01);
  transition: 0.3s ease;
}

/* Step Section */
.step-section {
  padding: 60px 20px;
  text-align: center;
  background: #0b001f;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.step-box {
  background: #6c00ff;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  max-width: 300px;
  flex: 1 1 280px;
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.3);
}

.step-box h1 {
  font-size: 60px;
  color: #fff;
  text-shadow: 0 0 20px #fff;
  margin-bottom: 15px;
}

.step-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-box p {
  font-size: 14px;
  opacity: 0.9;
}

.note-text {
  font-size: 15px;
  margin: 30px 0 20px;
}

/* FAQ Section */
.faq-section {
  background: #fff;
  color: #000;
  padding: 50px 20px;
  text-align: center;
}

.faq-section h2 {
  margin-bottom: 10px;
}

.faq-section h3 {
  margin: 0 0 30px;
  font-weight: 600;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-item input {
  display: none;
}

.accordion-item label {
  display: block;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.accordion-item label::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
}

.accordion-item input:checked + label::after {
  content: "-";
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
  padding: 0 15px;
}

.accordion-item input:checked ~ .accordion-content {
  max-height: 300px;
  padding: 15px;
}

/* Buy Button Section */
.bottom-buy-button {
  background: #0b001f;
  text-align: center;
  padding: 40px 20px;
}

.timer {
  font-size: 26px;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #ffcc00;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .step-section h2 {
    font-size: 22px;
  }
  .step-box h1 {
    font-size: 48px;
  }
  .step-box h3 {
    font-size: 16px;
  }
  .step-box p {
    font-size: 13px;
  }
  .glow-button {
    font-size: 18px;
    padding: 12px 20px;
  }
  .timer {
    font-size: 20px;
  }
}
.access-section {
  text-align: center;
  padding: 40px 20px;
}

.access-section {
  text-align: center;
  padding: 40px 20px;
}

.access-section h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.box {
  display: inline-block;
  background: linear-gradient(90deg, #43cea2, #185a9d);
  color: #fff;
  font-size: 18px;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  line-height: 1.8;
  text-align: left;
  max-width: 500px;
  transition: all 0.3s ease;
}

/* 🌈 Hover Effect */
.box:hover {
  background: linear-gradient(90deg, #ff6a00, #ee0979); /* orange-pink */
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}
.urgent-badge {
  background: white;
  color: red;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin: 20px auto;
  animation: pulse 1.5s infinite;
}

.icon {
  font-size: 26px;
}

.timer-container {
  text-align: center;
  margin-top: 20px;
}

.timer-title {
  font-size: 24px;
  font-weight: bold;
}

.timer {
  background: white;
  padding: 15px 25px;
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  color: #ff4500;
  border-radius: 12px;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: bounce 1.2s infinite;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

