body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #0e0e0e;
  color: #fff;
  line-height: 1.6;
}

/* HEADER */
header {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to bottom, #1a1a1a, #0e0e0e);
}

header h1 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0px 0px 6px #FFD700;
  font-weight: 700;
}

/* DOWNLOAD BOX */
.download-box {
  background: linear-gradient(145deg, #1a1a1a, #0b0b0b);
  border: 2px solid #FFD700;
  padding: 30px 20px;
  border-radius: 20px;
  max-width: 600px;
  margin: 30px auto;
  text-align: center;
  box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.3);
}

.download-box input {
  width: 80%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
}
/* Add these critical styles */
.download-box {
  position: relative;
  overflow: hidden;
}
 
.loading-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 8px;
  margin-top: 15px;
}
 
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 215, 0, 0.3);
  border-top-color: #FFD700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
 
@keyframes spin {
  to { transform: rotate(360deg); }
}
 
.error-message {
  color: #ff4444;
  padding: 15px;
  background: rgba(255, 44, 44, 0.1);
  border-radius: 8px;
  margin-top: 15px;
}
 
.download-option {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  font-weight: 600;
}
 
.download-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}
 
/* Mobile optimization */
@media (max-width: 480px) {
  .download-options {
    flex-direction: column;
    gap: 8px;
  }
 
  .download-option {
    width: 100%;
  }
}
/* GOLD BUTTON */
.gold-btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease-in-out;
}

.gold-btn:hover {
  background: linear-gradient(45deg, #FFA500, #FFD700);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

/* OPTIONS */
.options {
  margin-top: 20px;
  display: none;
}

.options button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  font-size: 16px;
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 70%;
  transition: all 0.3s;
  font-weight: 600;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.options button:hover {
  background: linear-gradient(45deg, #FFA500, #FFD700);
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}
section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0px 0px 15px rgba(255, 215, 0, 0.2);
}

section h2 {
  color: #fff;
  text-shadow: 0px 0px 3px #FFD700;
  margin-bottom: 10px;
}
/* SECTIONS */
.info-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.info-section h2 {
  color: #FFD700;
  margin-bottom: 10px;
}

.steps {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.step {
  text-align: center;
  width: 30%;
}

.step h3 {
  background: #FFD700;
  color: #000;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  font-size: 18px;
}

/* FAQ SECTION */
.faq {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  text-align: center;
}


.faq h2 {
  font-size: 2rem;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 5px #FFA500;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding-bottom: 10px;
  text-align: left;
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #FFD700;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #FFA500;
}

/* Icon styling */
.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* FAQ Answer */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.4;
}
/* When Active */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 10px 0;
}




/* ========================= */
/* RESPONSIVE DESIGN CHANGES */
/* ========================= */

/* Flex container for options on mobile */
.options-flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .options-flex {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .options-flex button {
    flex: 1;
    min-width: 45%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.4rem;
    padding: 10px;
  }

  .download-box {
    padding: 10px;
  }

  .download-box input {
    width: 70%;
    font-size: 10px;
  }

  .options button {
    width: 75%;
    font-size: 12px;
  }

  .steps {
    flex-direction: column;
    gap: 15px;
  }

  .step {
    width: 100%;
  }

  section, .faq {
    margin: 20px auto;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  header h1 {
    font-size: 1.5rem;
  }

  .gold-btn {
    width: 70%;
    padding: 10px;
  }

  .faq h2 {
    font-size: 1.5rem;
  }
}
