/* style/app-download-features.css */
.page-app-download-features {
  font-family: 'Arial', sans-serif;
  color: #f5f5f5; /* Light text on dark background for readability */
  background-color: #0A2342; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-app-download-features__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-app-download-features__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B400; /* Accent gold for main title */
  font-weight: bold;
  line-height: 1.2;
}

.page-app-download-features__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-app-download-features__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-app-download-features__button {
  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.2s ease;
  white-space: nowrap;
}

.page-app-download-features__button--primary {
  background-color: #E0B400; /* Gold accent */
  color: #0A2342; /* Dark blue text */
  border: 2px solid #E0B400;
}

.page-app-download-features__button--primary:hover {
  background-color: #f0c500;
  transform: translateY(-2px);
}

.page-app-download-features__button--secondary {
  background-color: transparent;
  color: #E0B400; /* Gold text */
  border: 2px solid #E0B400;
}

.page-app-download-features__button--secondary:hover {
  background-color: #E0B400;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-app-download-features__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-app-download-features__section-title {
  font-size: 2.5em;
  color: #E0B400;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  font-weight: bold;
}

.page-app-download-features__section-subtitle {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #cccccc;
}

.page-app-download-features__section-text {
  font-size: 1.05em;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-app-download-features__why-choose-section {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-app-download-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-app-download-features__feature-item {
  background-color: #1a3a60; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-features__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-app-download-features__feature-title {
  font-size: 1.5em;
  color: #E0B400;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-features__feature-text {
  font-size: 1em;
  color: #cccccc;
}

.page-app-download-features__core-features-section {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-app-download-features__feature-category {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
  background-color: #1a3a60;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-app-download-features__feature-category--reverse {
  flex-direction: row-reverse;
}

.page-app-download-features__category-content {
  flex: 1;
}

.page-app-download-features__category-image-wrapper {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

.page-app-download-features__category-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-features__category-title {
  font-size: 2em;
  color: #E0B400;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-app-download-features__category-text {
  font-size: 1.05em;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-align: justify;
}

.page-app-download-features__download-guide-section {
  padding: 80px 0;
  background-color: #0A2342;
}

.page-app-download-features__download-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-app-download-features__download-step {
  background-color: #1a3a60;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-app-download-features__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-app-download-features__step-title {
  font-size: 1.6em;
  color: #E0B400;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-features__step-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-app-download-features__qr-codes {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-app-download-features__qr-item {
  text-align: center;
  background-color: #1a3a60;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-features__qr-image {
  width: 180px;
  height: 180px;
  margin-bottom: 15px;
  background-color: #ffffff; /* QR codes are usually black on white */
  padding: 10px;
  border-radius: 5px;
}

.page-app-download-features__qr-label {
  font-size: 1.1em;
  color: #E0B400;
  font-weight: bold;
}

.page-app-download-features__download-note {
  text-align: center;
  font-style: italic;
  color: #cccccc;
  margin-top: 20px;
}

.page-app-download-features__responsible-gaming-section,
.page-app-download-features__conclusion-section,
.page-app-download-features__contact-section {
  padding: 80px 0;
  background-color: #0A2342;
  text-align: center;
}

.page-app-download-features__cta-final {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-app-download-features__hero-title {
    font-size: 2.5em;
  }
  .page-app-download-features__section-title {
    font-size: 2em;
  }
  .page-app-download-features__feature-category {
    flex-direction: column;
    gap: 30px;
    padding: 30px;
  }
  .page-app-download-features__feature-category--reverse {
    flex-direction: column;
  }
  .page-app-download-features__category-image-wrapper {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-app-download-features__hero-section {
    padding: 80px 0 60px;
  }
  .page-app-download-features__hero-title {
    font-size: 2em;
  }
  .page-app-download-features__hero-description {
    font-size: 1em;
  }
  .page-app-download-features__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-app-download-features__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-app-download-features__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-app-download-features__feature-item,
  .page-app-download-features__download-step {
    padding: 20px;
  }
  .page-app-download-features__category-title {
    font-size: 1.6em;
  }
  .page-app-download-features__category-text {
    font-size: 0.95em;
  }
  .page-app-download-features__download-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-app-download-features__hero-title {
    font-size: 1.8em;
  }
  .page-app-download-features__section-title {
    font-size: 1.5em;
  }
  .page-app-download-features__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-app-download-features__qr-item {
    width: 100%;
    max-width: 250px;
  }
  .page-app-download-features__qr-image {
    width: 150px;
    height: 150px;
  }
}