.page-download-center-app-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #c0c0c0; /* Light grey for general text */
  background-color: #0A2342; /* Main dark blue background */
}

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

.page-download-center-app-features__hero {
  position: relative;
  background: linear-gradient(135deg, #0A2342 0%, #1a3d6d 100%); /* Dark blue gradient */
  padding: 80px 0 40px;
  text-align: center;
  overflow: hidden;
}

.page-download-center-app-features__hero-image {
  max-width: 500px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: floatImage 3s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.page-download-center-app-features__title {
  font-size: 3.2em;
  color: #E6B325; /* Auxiliary gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-download-center-app-features__subtitle {
  font-size: 1.3em;
  color: #e0e0e0; /* Lighter grey for subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-download-center-app-features__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-download-center-app-features__btn--primary {
  background-color: #E6B325; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  box-shadow: 0 4px 15px rgba(230, 179, 37, 0.4);
}

.page-download-center-app-features__btn--primary:hover {
  background-color: #f0c54a; /* Lighter gold on hover */
  transform: translateY(-3px);
}

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

.page-download-center-app-features__btn--secondary:hover {
  background-color: rgba(230, 179, 37, 0.1);
  transform: translateY(-3px);
}

.page-download-center-app-features__section {
  padding: 60px 0;
  text-align: center;
}

.page-download-center-app-features__section:nth-of-type(even) {
  background-color: #0f2c53; /* Slightly lighter dark blue for alternating sections */
}

.page-download-center-app-features__section-title {
  font-size: 2.5em;
  color: #E6B325; /* Gold for section titles */
  margin-bottom: 25px;
  font-weight: bold;
}

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

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

.page-download-center-app-features__grid-item {
  background-color: #1a3d6d; /* Medium dark blue for grid items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-download-center-app-features__grid-item:hover {
  transform: translateY(-5px);
}

.page-download-center-app-features__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(230, 179, 37, 0.5));
}

.page-download-center-app-features__item-title {
  font-size: 1.6em;
  color: #E6B325;
  margin-bottom: 15px;
}

.page-download-center-app-features__item-text {
  font-size: 1em;
  color: #c0c0c0;
}

.page-download-center-app-features__features-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.page-download-center-app-features__feature-item {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  background-color: #1a3d6d;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features__feature-item--reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.page-download-center-app-features__feature-image {
  width: 45%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-download-center-app-features__feature-item--reverse .page-download-center-app-features__feature-image {
  margin-left: 0;
  margin-right: auto;
}

.page-download-center-app-features__feature-content {
  width: 55%;
}

.page-download-center-app-features__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  margin-top: 20px;
}

.page-download-center-app-features__download-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-download-center-app-features__step {
  background-color: #0f2c53;
  padding: 25px;
  border-left: 5px solid #E6B325;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features__step-title {
  font-size: 1.4em;
  color: #E6B325;
  margin-bottom: 10px;
}

.page-download-center-app-features__step-text {
  color: #d0d0d0;
}

.page-download-center-app-features__download-options {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-download-center-app-features__btn--download {
  background-color: #E6B325;
  color: #0A2342;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(230, 179, 37, 0.4);
}

.page-download-center-app-features__btn--download:hover {
  background-color: #f0c54a;
  transform: translateY(-3px);
}

.page-download-center-app-features__download-icon {
  width: 24px;
  height: 24px;
}

.page-download-center-app-features__download-image {
  max-width: 600px;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-download-center-app-features__responsible-betting .page-download-center-app-features__btn {
  margin-top: 30px;
  background-color: #E6B325;
  color: #0A2342;
}

.page-download-center-app-features__responsible-betting .page-download-center-app-features__btn:hover {
  background-color: #f0c54a;
}

.page-download-center-app-features__accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-app-features__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #1a3d6d;
  border-radius: 8px;
  overflow: hidden;
}

.page-download-center-app-features__accordion-header {
  background-color: #1a3d6d;
  color: #E6B325;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.2em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-download-center-app-features__accordion-header:hover {
  background-color: #2c5386;
}

.page-download-center-app-features__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-download-center-app-features__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-download-center-app-features__accordion-content {
  background-color: #0f2c53;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-download-center-app-features__accordion-content p {
  color: #c0c0c0;
  padding: 15px 0;
  margin: 0;
}

.page-download-center-app-features__final-cta .page-download-center-app-features__btn {
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center-app-features__title {
    font-size: 2.5em;
  }
  .page-download-center-app-features__section-title {
    font-size: 2em;
  }
  .page-download-center-app-features__feature-item {
    flex-direction: column;
    text-align: center;
  }
  .page-download-center-app-features__feature-item--reverse {
    flex-direction: column;
    text-align: center;
  }
  .page-download-center-app-features__feature-image,
  .page-download-center-app-features__feature-content {
    width: 100%;
  }
  .page-download-center-app-features__feature-item--reverse .page-download-center-app-features__feature-image {
    margin: 0 auto 20px auto;
  }
  .page-download-center-app-features__hero-image {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .page-download-center-app-features__title {
    font-size: 2em;
  }
  .page-download-center-app-features__subtitle {
    font-size: 1.1em;
  }
  .page-download-center-app-features__section-title {
    font-size: 1.8em;
  }
  .page-download-center-app-features__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-app-features__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center-app-features__hero-image {
    max-width: 300px;
  }
  .page-download-center-app-features__download-options {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-download-center-app-features__title {
    font-size: 1.8em;
  }
  .page-download-center-app-features__section-title {
    font-size: 1.6em;
  }
  .page-download-center-app-features__btn {
    width: 100%;
    box-sizing: border-box;
  }
  .page-download-center-app-features__grid {
    grid-template-columns: 1fr;
  }
  .page-download-center-app-features__feature-image {
    width: 80%;
  }
  .page-download-center-app-features__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
}