/* style/betting-platforms-download-guide.css */
.page-betting-platforms-download-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A1931; /* Primary brand color */
}

.page-betting-platforms-download-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-betting-platforms-download-guide__hero-section {
  background: linear-gradient(135deg, #0A1931, #2A3B5B);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-betting-platforms-download-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-betting-platforms-download-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-platforms-download-guide__hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-betting-platforms-download-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-betting-platforms-download-guide__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A1931; /* Primary color for text on accent background */
  border: 2px solid #FFD700;
}

.page-betting-platforms-download-guide__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-betting-platforms-download-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Accent color */
  border: 2px solid #FFD700;
}

.page-betting-platforms-download-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
}

.page-betting-platforms-download-guide__section {
  padding: 80px 0;
}

.page-betting-platforms-download-guide__section--alt {
  background-color: #0F2040; /* Slightly lighter dark background */
}

.page-betting-platforms-download-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color */
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-betting-platforms-download-guide__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #E0E0E0;
}

.page-betting-platforms-download-guide__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-betting-platforms-download-guide__feature-item {
  text-align: center;
  background-color: #1A2E50; /* Darker blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-betting-platforms-download-guide__feature-item:hover {
  transform: translateY(-5px);
}

.page-betting-platforms-download-guide__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-betting-platforms-download-guide__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Accent color */
  margin-bottom: 15px;
}

.page-betting-platforms-download-guide__feature-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-betting-platforms-download-guide__steps {
  display: grid;
  gap: 60px;
  margin-top: 40px;
}

.page-betting-platforms-download-guide__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-betting-platforms-download-guide__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Accent color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-platforms-download-guide__step-description {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 25px;
  max-width: 800px;
}

.page-betting-platforms-download-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700; /* Accent border */
}

.page-betting-platforms-download-guide__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-betting-platforms-download-guide__troubleshooting-list,
.page-betting-platforms-download-guide__security-list,
.page-betting-platforms-download-guide__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  gap: 30px;
}

.page-betting-platforms-download-guide__troubleshooting-list li,
.page-betting-platforms-download-guide__security-list li,
.page-betting-platforms-download-guide__promo-list li {
  background-color: #1A2E50;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-betting-platforms-download-guide__list-title {
  font-size: 1.6em;
  color: #FFD700; /* Accent color */
  margin-bottom: 10px;
}

.page-betting-platforms-download-guide__list-description {
  font-size: 1.05em;
  color: #C0C0C0;
}

.page-betting-platforms-download-guide__section--faq {
  background-color: #0F2040;
}

.page-betting-platforms-download-guide__faq-item {
  background-color: #1A2E50;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-betting-platforms-download-guide__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Accent color */
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-betting-platforms-download-guide__faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-betting-platforms-download-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-betting-platforms-download-guide__faq-answer {
  font-size: 1em;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-betting-platforms-download-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-platforms-download-guide__hero-title {
    font-size: 2.5em;
  }

  .page-betting-platforms-download-guide__section-title {
    font-size: 2em;
  }

  .page-betting-platforms-download-guide__hero-ctas {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-betting-platforms-download-guide__hero-title {
    font-size: 2em;
  }

  .page-betting-platforms-download-guide__hero-description {
    font-size: 1.1em;
  }

  .page-betting-platforms-download-guide__section-title {
    font-size: 1.8em;
  }

  .page-betting-platforms-download-guide__text {
    font-size: 1em;
  }

  .page-betting-platforms-download-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-betting-platforms-download-guide__features-grid,
  .page-betting-platforms-download-guide__steps {
    grid-template-columns: 1fr;
  }

  .page-betting-platforms-download-guide__feature-item,
  .page-betting-platforms-download-guide__troubleshooting-list li,
  .page-betting-platforms-download-guide__security-list li,
  .page-betting-platforms-download-guide__promo-list li {
    padding: 25px;
  }

  .page-betting-platforms-download-guide__step-title {
    font-size: 1.5em;
  }

  .page-betting-platforms-download-guide__list-title {
    font-size: 1.4em;
  }

  .page-betting-platforms-download-guide__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-betting-platforms-download-guide__hero-section,
  .page-betting-platforms-download-guide__section {
    padding: 60px 0;
  }

  .page-betting-platforms-download-guide__hero-title {
    font-size: 1.8em;
  }

  .page-betting-platforms-download-guide__section-title {
    font-size: 1.6em;
  }

  .page-betting-platforms-download-guide__btn {
    width: 100%;
  }
}