.page-index-platform-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

.page-index-platform-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-platform-features__section {
  padding: 60px 0;
}

.page-index-platform-features__section-title {
  font-size: 2.5em;
  color: var(--text-main);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index-platform-features__section-description {
  font-size: 1.1em;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index-platform-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top from header, this is decorative */
  overflow: hidden;
}

.page-index-platform-features__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-index-platform-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-index-platform-features__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-index-platform-features__hero-title {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-index-platform-features__hero-description {
  color: var(--text-secondary);
  font-size: 1.15em;
  margin-bottom: 30px;
}

.page-index-platform-features__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-index-platform-features__btn-primary,
.page-index-platform-features__btn-secondary {
  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-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-platform-features__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-index-platform-features__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-index-platform-features__btn-secondary {
  background: var(--background-color);
  color: var(--glow);
  border: 2px solid var(--glow);
}

.page-index-platform-features__btn-secondary:hover {
  background: var(--glow);
  color: var(--background-color);
  transform: translateY(-2px);
}

/* About Platform Section */
.page-index-platform-features__about-platform-section {
  background-color: var(--background);
}

.page-index-platform-features__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-index-platform-features__text-block {
  flex: 1;
  min-width: 300px;
}

.page-index-platform-features__text-block p {
  margin-bottom: 15px;
  color: var(--text-secondary);
  font-size: 1.05em;
}

.page-index-platform-features__image-block {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.page-index-platform-features__image-block img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 10px;
  display: block;
}

/* Game Diversity Section */
.page-index-platform-features__game-diversity-section {
  background-color: var(--card-b-g);
}

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

.page-index-platform-features__game-card {
  background-color: var(--background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
  color: var(--text-main);
}

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

.page-index-platform-features__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-index-platform-features__card-title {
  font-size: 1.4em;
  color: var(--text-main);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-index-platform-features__card-title a {
  color: var(--text-main);
  text-decoration: none;
}

.page-index-platform-features__card-title a:hover {
  color: var(--glow);
}

.page-index-platform-features__card-text {
  color: var(--text-secondary);
  font-size: 0.95em;
  padding: 0 15px;
}

/* Technology Experience Section */
.page-index-platform-features__technology-experience-section {
  background-color: var(--deep-green);
  color: #ffffff;
}

.page-index-platform-features__technology-experience-section .page-index-platform-features__section-title,
.page-index-platform-features__technology-experience-section .page-index-platform-features__section-description {
  color: #ffffff;
}

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

.page-index-platform-features__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-index-platform-features__feature-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-platform-features__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: none; /* Ensure no CSS filter changes original image color */
}

.page-index-platform-features__feature-title {
  font-size: 1.3em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-index-platform-features__feature-text {
  color: var(--text-secondary);
  font-size: 0.95em;
}

.page-index-platform-features__feature-text a {
  color: var(--glow);
  text-decoration: underline;
}

.page-index-platform-features__feature-text a:hover {
  color: var(--gold);
}

/* Promotions Section */
.page-index-platform-features__promotions-section {
  background-color: var(--background);
}

.page-index-platform-features__promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-index-platform-features__promo-item {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-index-platform-features__promo-item:hover {
  transform: translateY(-5px);
}

.page-index-platform-features__promo-title {
  font-size: 1.3em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-index-platform-features__promo-text {
  color: var(--text-secondary);
  font-size: 0.95em;
}

.page-index-platform-features__promo-text a {
  color: var(--glow);
  text-decoration: underline;
}

.page-index-platform-features__promo-text a:hover {
  color: var(--gold);
}

.page-index-platform-features__cta-buttons--center {
  margin-top: 40px;
  text-align: center;
}

/* Support Section */
.page-index-platform-features__support-section {
  background-color: var(--card-b-g);
}

.page-index-platform-features__support-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-platform-features__channel-item {
  background-color: var(--background);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-index-platform-features__channel-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  filter: none; /* Ensure no CSS filter changes original image color */
}

.page-index-platform-features__channel-title {
  font-size: 1.3em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-index-platform-features__channel-text {
  color: var(--text-secondary);
  font-size: 0.95em;
}

/* Get Started Section */
.page-index-platform-features__get-started-section {
  background-color: var(--background);
}

.page-index-platform-features__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-platform-features__step-item {
  background-color: var(--card-b-g);
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-platform-features__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--glow);
  margin-bottom: 15px;
  background: rgba(var(--glow-rgb), 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  margin: 0 auto 20px auto;
}

.page-index-platform-features__step-title {
  font-size: 1.4em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-index-platform-features__step-text {
  color: var(--text-secondary);
  font-size: 0.95em;
}

/* FAQ Section */
.page-index-platform-features__faq-section {
  background-color: var(--deep-green);
  color: #ffffff;
}

.page-index-platform-features__faq-section .page-index-platform-features__section-title {
  color: #ffffff;
}

.page-index-platform-features__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-platform-features__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-platform-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--text-main);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-index-platform-features__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-platform-features__faq-item[open] > .page-index-platform-features__faq-question {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-platform-features__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-platform-features__faq-qtext {
  flex-grow: 1;
  color: var(--text-main);
}

.page-index-platform-features__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow);
}

.page-index-platform-features__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95em;
  color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-platform-features__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-index-platform-features__hero-image-wrapper {
    max-height: 500px;
  }

  .page-index-platform-features__hero-title {
    font-size: 2.5em;
  }

  .page-index-platform-features__section-title {
    font-size: 2em;
  }

  .page-index-platform-features__content-wrapper {
    flex-direction: column;
  }

  .page-index-platform-features__image-block img {
    max-width: 100%;
  }

  .page-index-platform-features__features-grid,
  .page-index-platform-features__promo-list,
  .page-index-platform-features__support-channels,
  .page-index-platform-features__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-platform-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-index-platform-features__hero-section {
    padding: 10px 0 30px 0 !important;
  }

  .page-index-platform-features__hero-image-wrapper {
    max-height: 350px;
  }

  .page-index-platform-features__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-index-platform-features__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-index-platform-features__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-platform-features__btn-primary,
  .page-index-platform-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-index-platform-features__section {
    padding: 40px 0;
  }

  .page-index-platform-features__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-index-platform-features__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-index-platform-features__content-wrapper {
    gap: 30px;
  }

  .page-index-platform-features__image-block img,
  .page-index-platform-features__game-card img,
  .page-index-platform-features__feature-icon,
  .page-index-platform-features__channel-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-platform-features__section,
  .page-index-platform-features__card,
  .page-index-platform-features__container,
  .page-index-platform-features__game-card,
  .page-index-platform-features__feature-item,
  .page-index-platform-features__promo-item,
  .page-index-platform-features__channel-item,
  .page-index-platform-features__step-item,
  .page-index-platform-features__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-platform-features__hero-section .page-index-platform-features__container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-index-platform-features__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-index-platform-features__cta-buttons--center {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-platform-features__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-index-platform-features__faq-answer {
    padding: 0 20px 15px 20px;
  }
}