.page-resources-game-platform-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a2e; /* Body background color */
}

.page-resources-game-platform-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #26A9E0; /* Primary brand color for hero background */
  color: #ffffff;
  overflow: hidden;
}

.page-resources-game-platform-features__hero-content {
  max-width: 900px;
  margin-bottom: 30px;
  z-index: 1;
}

.page-resources-game-platform-features__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

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

.page-resources-game-platform-features__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-resources-game-platform-features__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-game-platform-features__highlight {
  color: #FFFFFF;
  font-weight: bold;
}

.page-resources-game-platform-features__section {
  padding: 60px 20px;
  margin-bottom: 20px;
}

.page-resources-game-platform-features__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-resources-game-platform-features__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-game-platform-features__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #EA7C07;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-game-platform-features__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-game-platform-features__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-game-platform-features__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-game-platform-features__light-bg .page-resources-game-platform-features__highlight {
  color: #26A9E0;
}

.page-resources-game-platform-features__light-bg .page-resources-game-platform-features__sub-title,
.page-resources-game-platform-features__light-bg .page-resources-game-platform-features__section-title {
  color: #26A9E0;
}

.page-resources-game-platform-features__light-bg .page-resources-game-platform-features__paragraph {
  color: #333333;
}

.page-resources-game-platform-features__dark-bg {
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-resources-game-platform-features__dark-bg .page-resources-game-platform-features__highlight {
  color: #26A9E0;
}

.page-resources-game-platform-features__dark-bg .page-resources-game-platform-features__section-title,
.page-resources-game-platform-features__dark-bg .page-resources-game-platform-features__sub-title {
  color: #ffffff;
}

.page-resources-game-platform-features__dark-bg .page-resources-game-platform-features__section-title::after {
  background-color: #EA7C07;
}

.page-resources-game-platform-features__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-resources-game-platform-features__cta-buttons--center {
  margin-top: 50px;
}

.page-resources-game-platform-features__btn-primary,
.page-resources-game-platform-features__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-game-platform-features__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-game-platform-features__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-resources-game-platform-features__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-game-platform-features__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-resources-game-platform-features__light-bg .page-resources-game-platform-features__btn-secondary {
  color: #26A9E0;
  border-color: #26A9E0;
}

.page-resources-game-platform-features__light-bg .page-resources-game-platform-features__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-game-platform-features__image-with-text {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-game-platform-features__image-with-text--reverse {
  flex-direction: row-reverse;
}

.page-resources-game-platform-features__image-content {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensures image is responsive */
  height: auto;
}

.page-resources-game-platform-features__text-block {
  flex: 2;
}

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

.page-resources-game-platform-features__support-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-game-platform-features__support-item:hover {
  transform: translateY(-5px);
}

.page-resources-game-platform-features__light-bg .page-resources-game-platform-features__support-item {
  background-color: #f8f9fa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-game-platform-features__support-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  max-width: 100%;
  height: auto;
}

.page-resources-game-platform-features__support-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-resources-game-platform-features__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-resources-game-platform-features__list-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-game-platform-features__light-bg .page-resources-game-platform-features__list-item {
  background-color: #f8f9fa;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-game-platform-features__list-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-game-platform-features__hero-title {
    font-size: 2.8em;
  }

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

  .page-resources-game-platform-features__sub-title {
    font-size: 1.6em;
  }

  .page-resources-game-platform-features__image-with-text {
    flex-direction: column;
    text-align: center;
  }

  .page-resources-game-platform-features__image-with-text--reverse {
    flex-direction: column;
  }

  .page-resources-game-platform-features__image-content {
    width: 100%;
  }
}

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

  .page-resources-game-platform-features__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-game-platform-features__hero-title {
    font-size: 2.2em;
  }

  .page-resources-game-platform-features__hero-description {
    font-size: 1em;
  }

  .page-resources-game-platform-features__section,
  .page-resources-game-platform-features__content-area {
    padding: 30px 15px;
  }

  .page-resources-game-platform-features__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-game-platform-features__sub-title {
    font-size: 1.4em;
  }

  .page-resources-game-platform-features__paragraph {
    font-size: 1em;
  }

  .page-resources-game-platform-features__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-game-platform-features__btn-primary,
  .page-resources-game-platform-features__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-game-platform-features__image-content,
  .page-resources-game-platform-features__support-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-game-platform-features__section,
  .page-resources-game-platform-features__card,
  .page-resources-game-platform-features__container,
  .page-resources-game-platform-features__hero-section,
  .page-resources-game-platform-features__image-with-text,
  .page-resources-game-platform-features__support-grid,
  .page-resources-game-platform-features__feature-list,
  .page-resources-game-platform-features__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-resources-game-platform-features__hero-image-wrapper {
    left: -15px;
    width: calc(100% + 30px);
  }

  .page-resources-game-platform-features__support-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-game-platform-features__support-item {
    padding: 20px;
  }

  .page-resources-game-platform-features__list-item {
    padding: 20px;
  }
}

/* Ensure images are not filtered */
.page-resources-game-platform-features img {
  filter: none !important;
}

/* Content area image CSS size lower bound (not by class name) */
.page-resources-game-platform-features__content-area img,
.page-resources-game-platform-features__image-content,
.page-resources-game-platform-features__support-icon {
  min-width: 200px;
  min-height: 200px;
}

/* Specific button color for login as requested */
.page-resources-game-platform-features__btn-login {
  background-color: #EA7C07;
  border-color: #EA7C07;
  color: #ffffff;
}

.page-resources-game-platform-features__btn-login:hover {
  background-color: #c76706;
  border-color: #c76706;
}

/* Fallback for background color if not explicitly set for content area */
.page-resources-game-platform-features__content-area {
  background-color: #1a1a2e; /* Inherit or explicitly set dark background */
  color: #ffffff;
}

.page-resources-game-platform-features__light-bg.page-resources-game-platform-features__content-area {
  background-color: #ffffff;
  color: #333333;
}