/* style/download-center.css */
.page-download-center {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A2E44; /* Main dark background */
  line-height: 1.6;
}

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

.page-download-center__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a506b 100%); /* Dark blue gradient */
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary gold for highlight */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-download-center__hero-subtitle {
  font-size: 1.3em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-download-center__download-buttons {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-download-center__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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E44; /* Dark blue text */
}

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

.page-download-center__btn--secondary {
  background-color: #2e4a6a; /* Slightly lighter dark blue */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-download-center__btn--secondary:hover {
  background-color: #3f5d7d;
  transform: translateY(-3px);
}

.page-download-center__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

.page-download-center__section {
  padding: 80px 0;
  text-align: center;
}

.page-download-center__section--why-download {
  background-color: #1A2E44;
}

.page-download-center__section--platforms {
  background-color: #2e4a6a;
}

.page-download-center__section--faq {
  background-color: #1A2E44;
}

.page-download-center__section--responsible-gambling {
  background-color: #2e4a6a;
}

.page-download-center__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-download-center__section-description {
  font-size: 1.15em;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 50px;
}

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

.page-download-center__feature-item {
  background-color: #2e4a6a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-download-center__feature-item:hover {
  transform: translateY(-10px);
}

.page-download-center__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.page-download-center__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-download-center__feature-text {
  font-size: 1em;
  color: #E0E0E0;
}

.page-download-center__platform-guide {
  background-color: #1A2E44;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.page-download-center__platform-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
}

.page-download-center__platform-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.page-download-center__platform-content--reverse {
  flex-direction: row-reverse;
}

.page-download-center__platform-image {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center__platform-steps {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-download-center__platform-steps p {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-download-center__platform-steps ol {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-bottom: 30px;
}

.page-download-center__platform-steps li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-download-center__platform-steps li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #1A2E44;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-download-center__faq-items {
  margin-top: 40px;
  text-align: left;
}

.page-download-center__faq-item {
  background-color: #2e4a6a;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-download-center__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-download-center__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-download-center__faq-answer {
  font-size: 1.05em;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-top: 0;
}

.page-download-center__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  opacity: 1;
  padding-top: 15px;
}

.page-download-center__cta-bottom {
  margin-top: 60px;
  padding: 40px;
  background-color: #2e4a6a;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-download-center__cta-bottom p {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-download-center__responsible-gambling-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.page-download-center__responsible-gambling-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-download-center__responsible-gambling-list {
  list-style: none;
  padding: 0;
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-download-center__responsible-gambling-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-download-center__icon {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1.2em;
  color: #FFD700;
}

.page-download-center__icon--check::before {
  content: '\2713'; /* Checkmark symbol */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center__hero-title {
    font-size: 3em;
  }
  .page-download-center__section-title {
    font-size: 2.4em;
  }
  .page-download-center__platform-content, .page-download-center__platform-content--reverse, .page-download-center__responsible-gambling-content {
    flex-direction: column;
  }
  .page-download-center__platform-image, .page-download-center__responsible-gambling-image {
    max-width: 100%;
  }
  .page-download-center__platform-steps, .page-download-center__responsible-gambling-list {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-download-center__hero-title {
    font-size: 2.5em;
  }
  .page-download-center__hero-subtitle {
    font-size: 1.1em;
  }
  .page-download-center__section-title {
    font-size: 2em;
  }
  .page-download-center__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center__features-grid {
    grid-template-columns: 1fr;
  }
  .page-download-center__platform-guide {
    padding: 30px;
  }
  .page-download-center__platform-title {
    font-size: 1.8em;
  }
  .page-download-center__faq-question {
    font-size: 1.2em;
  }
  .page-download-center__cta-bottom p {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-download-center__hero-title {
    font-size: 2em;
  }
  .page-download-center__hero-subtitle {
    font-size: 1em;
  }
  .page-download-center__section-title {
    font-size: 1.8em;
  }
  .page-download-center__download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-download-center__feature-title {
    font-size: 1.5em;
  }
  .page-download-center__platform-title {
    font-size: 1.6em;
  }
  .page-download-center__platform-steps li {
    font-size: 0.95em;
  }
  .page-download-center__faq-question {
    font-size: 1.1em;
  }
  .page-download-center__cta-bottom p {
    font-size: 1.1em;
  }
}