.page-platform-features-game-providers-list {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A252F; /* Dark background */
  line-height: 1.6;
}

.page-platform-features-game-providers-list__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-platform-features-game-providers-list__hero-section {
  background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-platform-features-game-providers-list__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,gaming,subtle]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-platform-features-game-providers-list__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #F39C12; /* Accent color for title */
  position: relative;
  z-index: 1;
}

.page-platform-features-game-providers-list__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #B0B0B0;
  position: relative;
  z-index: 1;
}

.page-platform-features-game-providers-list__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;
  margin: 0 10px;
  position: relative;
  z-index: 1;
}

.page-platform-features-game-providers-list__btn--primary {
  background-color: #F39C12;
  color: #2C3E50;
  border: 2px solid #F39C12;
}

.page-platform-features-game-providers-list__btn--primary:hover {
  background-color: #E08E0B;
  border-color: #E08E0B;
  transform: translateY(-3px);
}

.page-platform-features-game-providers-list__btn--secondary {
  background-color: transparent;
  color: #F39C12;
  border: 2px solid #F39C12;
}

.page-platform-features-game-providers-list__btn--secondary:hover {
  background-color: #F39C12;
  color: #2C3E50;
  transform: translateY(-3px);
}

.page-platform-features-game-providers-list__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  margin-top: 15px;
}

.page-platform-features-game-providers-list__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-platform-features-game-providers-list__content-section {
  padding: 60px 0;
  background-color: #1A252F;
}

.page-platform-features-game-providers-list__heading {
  font-size: 2.5em;
  color: #F39C12;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.page-platform-features-game-providers-list__paragraph {
  font-size: 1.1em;
  color: #B0B0B0;
  margin-bottom: 25px;
  text-align: justify;
}

.page-platform-features-game-providers-list__paragraph .highlight,
.page-platform-features-game-providers-list__title .highlight,
.page-platform-features-game-providers-list__heading .highlight,
.page-platform-features-game-providers-list__cta-description .highlight {
  color: #F39C12;
  font-weight: bold;
}

.page-platform-features-game-providers-list__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.page-platform-features-game-providers-list__grid-item {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-platform-features-game-providers-list__grid-item:hover {
  transform: translateY(-5px);
}

.page-platform-features-game-providers-list__list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.page-platform-features-game-providers-list__list li {
  background-color: #2C3E50;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
  font-size: 1.05em;
  border-left: 5px solid #F39C12;
}

.page-platform-features-game-providers-list__list li strong {
  color: #F39C12;
}

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

.page-platform-features-game-providers-list__provider-card {
  background-color: #2C3E50;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-platform-features-game-providers-list__provider-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-platform-features-game-providers-list__provider-logo {
  max-width: 150px;
  height: auto;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1) drop-shadow(0px 0px 5px rgba(243, 156, 18, 0.5)); /* White logo with gold shadow */
}

.page-platform-features-game-providers-list__provider-name {
  font-size: 1.8em;
  color: #F39C12;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-platform-features-game-providers-list__provider-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-platform-features-game-providers-list__benefit-item {
  background-color: #2C3E50;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-platform-features-game-providers-list__benefit-item:hover {
  transform: translateY(-5px);
}

.page-platform-features-game-providers-list__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(243, 156, 18, 0.6));
}

.page-platform-features-game-providers-list__benefit-title {
  font-size: 1.5em;
  color: #F39C12;
  margin-bottom: 10px;
}

.page-platform-features-game-providers-list__benefit-description {
  font-size: 0.95em;
  color: #B0B0B0;
}

.page-platform-features-game-providers-list__cta-block {
  background: linear-gradient(90deg, #F39C12, #E08E0B);
  color: #2C3E50;
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-platform-features-game-providers-list__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #2C3E50;
}

.page-platform-features-game-providers-list__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #1A252F;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-platform-features-game-providers-list__title {
    font-size: 2.5em;
  }
  .page-platform-features-game-providers-list__heading {
    font-size: 2em;
  }
  .page-platform-features-game-providers-list__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-platform-features-game-providers-list__hero-section {
    padding: 80px 0;
  }
  .page-platform-features-game-providers-list__title {
    font-size: 2em;
  }
  .page-platform-features-game-providers-list__subtitle {
    font-size: 1.1em;
  }
  .page-platform-features-game-providers-list__btn {
    margin: 10px 0;
    width: 80%;
    max-width: 300px;
  }
  .page-platform-features-game-providers-list__list {
    grid-template-columns: 1fr;
  }
  .page-platform-features-game-providers-list__cta-title {
    font-size: 1.8em;
  }
  .page-platform-features-game-providers-list__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-platform-features-game-providers-list__title {
    font-size: 1.8em;
  }
  .page-platform-features-game-providers-list__heading {
    font-size: 1.6em;
  }
  .page-platform-features-game-providers-list__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-platform-features-game-providers-list__provider-card,
  .page-platform-features-game-providers-list__benefit-item {
    padding: 20px;
  }
  .page-platform-features-game-providers-list__provider-name {
    font-size: 1.5em;
  }
  .page-platform-features-game-providers-list__benefit-title {
    font-size: 1.3em;
  }
  .page-platform-features-game-providers-list__cta-title {
    font-size: 1.5em;
  }
}