/* style/app-download-installation-guide.css */
.page-app-download-installation-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-app-download-installation-guide__hero-section {
  background-color: #0A2463; /* Primary color */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:abstract_blue_gold_pattern,tech_background,betting_theme]');
  background-size: cover;
  background-position: center;
}

.page-app-download-installation-guide__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color */
  font-weight: bold;
  line-height: 1.2;
}

.page-app-download-installation-guide__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-app-download-installation-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-app-download-installation-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-app-download-installation-guide__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A2463; /* Primary color */
}

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

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

.page-app-download-installation-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-app-download-installation-guide__btn--inline {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-app-download-installation-guide__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-app-download-installation-guide__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  color: #333;
}

.page-app-download-installation-guide__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Primary color */
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.page-app-download-installation-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Accent color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-app-download-installation-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
}

.page-app-download-installation-guide__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-app-download-installation-guide__feature-list li {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #444;
}

.page-app-download-installation-guide__feature-list li .icon-check {
  color: #FFD700; /* Accent color */
  font-size: 1.5em;
  flex-shrink: 0;
}

.page-app-download-installation-guide__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-app-download-installation-guide__step-list li {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 90px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-app-download-installation-guide__step-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-app-download-installation-guide__step-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: #0A2463; /* Primary color */
  color: #FFD700; /* Accent color */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation-guide__step-list li h3 {
  color: #0A2463; /* Primary color */
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-app-download-installation-guide__step-list li p {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 15px;
}

.page-app-download-installation-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-app-download-installation-guide__image--full-width {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-bottom: 40px;
}

.page-app-download-installation-guide__warning-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-app-download-installation-guide__warning-list li {
  background-color: #fff3cd;
  color: #856404;
  padding: 15px 20px;
  border-left: 5px solid #ffc107;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-app-download-installation-guide__warning-list li .icon-warning {
  color: #ffc107;
  font-size: 1.5em;
  flex-shrink: 0;
}

.page-app-download-installation-guide__faq-item {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.page-app-download-installation-guide__faq-item h3 {
  color: #0A2463; /* Primary color */
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-app-download-installation-guide__faq-item p {
  color: #555;
  font-size: 1.05em;
}

.page-app-download-installation-guide__final-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #0A2463; /* Primary color */
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-app-download-installation-guide__final-cta .page-app-download-installation-guide__text-block {
  color: #e0e0e0;
  font-size: 1.3em;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-app-download-installation-guide__main-title {
    font-size: 2.5em;
  }

  .page-app-download-installation-guide__subtitle {
    font-size: 1.1em;
  }

  .page-app-download-installation-guide__section-title {
    font-size: 2em;
  }

  .page-app-download-installation-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-app-download-installation-guide__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-app-download-installation-guide__step-list li {
    padding-left: 20px;
    padding-top: 70px;
  }

  .page-app-download-installation-guide__step-list li::before {
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
  }

  .page-app-download-installation-guide__step-list li h3 {
    text-align: center;
  }

  .page-app-download-installation-guide__feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-app-download-installation-guide__main-title {
    font-size: 2em;
  }

  .page-app-download-installation-guide__section-title {
    font-size: 1.8em;
  }

  .page-app-download-installation-guide__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-app-download-installation-guide__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}