.page-game-providers {
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-game-providers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-game-providers__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-providers__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-game-providers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-game-providers__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-game-providers__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-game-providers__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-game-providers__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-game-providers__button--register:hover {
  background-color: #F0F0F0;
  color: #000000;
  transform: translateY(-2px);
}

.page-game-providers__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-game-providers__button--login:hover {
  background-color: #E0A83F;
  color: #000000;
  transform: translateY(-2px);
}

.page-game-providers__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-game-providers__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Section common styles */
.page-game-providers__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-providers__section-subtitle {
  font-size: 1.4em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

.page-game-providers__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}

/* Introduction Section */
.page-game-providers__introduction-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

/* Featured Providers Section */
.page-game-providers__featured-providers-section {
  padding: 60px 0;
}

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

.page-game-providers__provider-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-providers__provider-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-game-providers__provider-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

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

.page-game-providers__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-providers__card-button {
  background-color: #000000;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-game-providers__card-button:hover {
  background-color: #333333;
}

/* Benefits Section */
.page-game-providers__benefits-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

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

.page-game-providers__benefit-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-providers__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-providers__benefit-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-providers__benefit-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

/* How to Choose Section */
.page-game-providers__how-to-choose-section {
  padding: 60px 0;
}

.page-game-providers__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-providers__list-item {
  background-color: #FFFFFF;
  border-left: 5px solid #000000;
  padding: 15px 20px;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.page-game-providers__list-item strong {
  color: #000000;
}

/* FAQ Section */
.page-game-providers__faq-section {
  padding: 60px 0;
  background-color: #F8F8F8;
}

.page-game-providers__faq-accordion {
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-game-providers__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.page-game-providers__faq-question {
  font-size: 1.2em;
  color: #000000;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  background-color: #FDFDFD;
  border-bottom: 1px solid #EEEEEE;
}

.page-game-providers__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-game-providers__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-game-providers__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-providers__faq-answer p {
  padding-bottom: 20px;
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-game-providers__faq-question.active + .page-game-providers__faq-answer {
  max-height: 200px; /* Adjust as needed for content length */
  padding-top: 15px;
}

/* Call to Action Section */
.page-game-providers__cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
}

.page-game-providers__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-game-providers__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F0F0F0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-providers__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-providers__hero-title {
    font-size: 3em;
  }
  .page-game-providers__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-game-providers {
    padding-top: var(--header-offset, 80px);
  }
  .page-game-providers__hero-section {
    padding: 60px 20px;
  }
  .page-game-providers__hero-title {
    font-size: 2.5em;
  }
  .page-game-providers__hero-description {
    font-size: 1.1em;
  }
  .page-game-providers__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-providers__button {
    width: 100%;
    max-width: 300px;
  }
  .page-game-providers__section-title {
    font-size: 1.8em;
  }
  .page-game-providers__section-subtitle {
    font-size: 1.2em;
  }
  .page-game-providers__provider-card,
  .page-game-providers__benefit-item {
    padding: 25px;
  }
  .page-game-providers__provider-image,
  .page-game-providers__benefit-icon {
    max-width: 100%;
  }
  .page-game-providers__card-title {
    font-size: 1.5em;
  }
  .page-game-providers__benefit-title {
    font-size: 1.4em;
  }
  .page-game-providers__list-item {
    font-size: 1em;
  }
  .page-game-providers__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-game-providers__cta-title {
    font-size: 2.5em;
  }
  .page-game-providers__cta-description {
    font-size: 1.1em;
  }
  .page-game-providers__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure all images within content area are responsive and not smaller than 200px */
  .page-game-providers img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
    object-fit: contain;
  }
  .page-game-providers__hero-image {
    min-width: unset;
    min-height: unset;
  }
}

@media (max-width: 480px) {
  .page-game-providers__hero-title {
    font-size: 2em;
  }
  .page-game-providers__hero-description {
    font-size: 1em;
  }
  .page-game-providers__section-title {
    font-size: 1.5em;
  }
  .page-game-providers__section-subtitle {
    font-size: 1em;
  }
  .page-game-providers__cta-title {
    font-size: 2em;
  }
}