.page-index-app-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Explicitly setting for page content, though body is already white */
}

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

.page-index-app-features__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
}

.page-index-app-features__hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index-app-features__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

.page-index-app-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-index-app-features__hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-index-app-features__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-index-app-features__cta-button--download {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
}

.page-index-app-features__cta-button--download:hover {
  background-color: #e0a53a;
}

.page-index-app-features__cta-button--register {
  background-color: #FFFFFF; /* Register color for secondary action */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-index-app-features__cta-button--register:hover {
  background-color: #f0f0f0;
  border-color: #e0a53a;
}

.page-index-app-features__hero-image-wrapper {
  max-width: 800px; /* Constrain image width */
  margin: 0 auto;
}

.page-index-app-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-index-app-features__features-overview,
.page-index-app-features__how-to-start,
.page-index-app-features__responsible-gaming,
.page-index-app-features__why-choose {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-index-app-features__section-title {
  font-size: 2.2em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index-app-features__section-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-index-app-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-app-features__feature-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-index-app-features__feature-card:hover {
  transform: translateY(-5px);
}

.page-index-app-features__feature-icon {
  width: 200px; /* Min size 200px */
  height: 200px; /* Min size 200px */
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-index-app-features__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-app-features__card-description {
  color: #666666;
  font-size: 0.95em;
}

.page-index-app-features__cta-link {
  display: inline-block;
  margin-top: 20px;
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-index-app-features__cta-link:hover {
  text-decoration: underline;
}

.page-index-app-features__how-to-start {
  background-color: #f0f0f0;
}

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

.page-index-app-features__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-app-features__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-app-features__step-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-index-app-features__step-description {
  color: #666666;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-index-app-features__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #000000;
  color: #FFFFFF;
}

.page-index-app-features__cta-button--small:hover {
  background-color: #333333;
}

.page-index-app-features__guide-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1em;
  color: #555555;
}

.page-index-app-features__guide-note a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-index-app-features__guide-note a:hover {
  text-decoration: underline;
}

.page-index-app-features__responsible-gaming {
  background-color: #FFFFFF;
}

.page-index-app-features__responsible-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-index-app-features__responsible-text {
  flex: 1;
  min-width: 300px;
}

.page-index-app-features__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-app-features__responsible-text p {
  color: #666666;
  margin-bottom: 15px;
}

.page-index-app-features__cta-button--secondary {
  background-color: #000000;
  color: #FFFFFF;
}

.page-index-app-features__cta-button--secondary:hover {
  background-color: #333333;
}

.page-index-app-features__responsible-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-app-features__responsible-image {
  width: 100%;
  height: auto;
  max-width: 600px; /* Set max width for image */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-app-features__why-choose {
  background-color: #000000;
  color: #FFFFFF;
}

.page-index-app-features__why-choose .page-index-app-features__section-title {
  color: #FFFFFF;
}

.page-index-app-features__why-choose .page-index-app-features__section-intro {
  color: #f0f0f0;
}

.page-index-app-features__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-index-app-features__advantages-list li {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 15px;
}

.page-index-app-features__advantages-list li strong {
  color: #FCBC45;
}

.page-index-app-features__advantages-list li::before {
  content: '✔';
  color: #FCBC45;
  font-size: 1.2em;
}

.page-index-app-features__final-cta-text {
  text-align: center;
  font-size: 1.3em;
  color: #f0f0f0;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-index-app-features__cta-button--large {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.3em;
  border-radius: 10px;
}

.page-index-app-features__cta-button--large:hover {
  background-color: #e0a53a;
}

.page-index-app-features__copyright-section {
  background-color: #000000;
  padding: 30px 0;
  text-align: center;
  color: #666666;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-app-features__copyright-text {
  font-size: 0.9em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-app-features__hero-title {
    font-size: 2em;
  }

  .page-index-app-features__hero-description {
    font-size: 1em;
  }

  .page-index-app-features__hero-ctas {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-app-features__cta-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-index-app-features__section-title {
    font-size: 1.8em;
  }

  .page-index-app-features__section-intro {
    font-size: 1em;
  }

  .page-index-app-features__feature-grid,
  .page-index-app-features__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-index-app-features__responsible-content {
    flex-direction: column;
  }

  .page-index-app-features__responsible-image-wrapper {
    order: -1; /* Image above text on mobile */
  }

  .page-index-app-features__feature-icon,
  .page-index-app-features__responsible-image {
    max-width: 100%;
    width: 100%; /* Ensures images scale down */
    height: auto; /* Ensures images scale down */
    min-width: 200px;
    min-height: 200px;
  }

  .page-index-app-features__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  .page-index-app-features__advantages-list li {
    font-size: 1em;
    gap: 10px;
  }
}