.page-game-providers {
  padding-top: 10px; /* Minimal padding to prevent content from touching the header */
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-game-providers__hero-section {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px; /* Added padding to separate image from text block */
}

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

.page-game-providers__hero-content {
  padding: 30px 20px;
  background-color: #111111;
  border-radius: 10px;
  margin-top: 20px; /* Separates content block from image */
}

.page-game-providers__hero-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem); /* Responsive font size */
  font-weight: bold;
  color: #F2C14E;
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.page-game-providers__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #E5E5E5;
}

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

.page-game-providers__button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-game-providers__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-game-providers__button--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-game-providers__button--secondary {
  background-color: transparent;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-game-providers__button--secondary:hover {
  background-color: #F2C14E;
  color: #111111;
}

.page-game-providers__section-title {
  font-size: 2.2rem;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.3;
}

.page-game-providers__section-description {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E5E5E5;
}

.page-game-providers__intro-section,
.page-game-providers__featured-providers-section,
.page-game-providers__game-categories-section,
.page-game-providers__why-choose-section,
.page-game-providers__how-to-start-section,
.page-game-providers__faq-section,
.page-game-providers__cta-section {
  padding: 60px 0;
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-game-providers__featured-providers-section {
  background-color: #111111;
  border: 1px solid #3A2A12;
}

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

.page-game-providers__provider-card {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px;
  box-sizing: border-box;
}

.page-game-providers__provider-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(242, 193, 78, 0.2);
}

.page-game-providers__provider-logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
  min-width: 200px;
  min-height: 200px;
  object-fit: contain;
}

.page-game-providers__provider-name {
  font-size: 1.3rem;
  color: #FFD36B;
  font-weight: bold;
}

.page-game-providers__game-categories-section {
  background-color: #0A0A0A;
}

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

.page-game-providers__category-card {
  display: block;
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: #FFF6D6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 350px;
  box-sizing: border-box;
}

.page-game-providers__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(242, 193, 78, 0.2);
}

.page-game-providers__category-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

.page-game-providers__category-title {
  font-size: 1.4rem;
  padding: 15px;
  text-align: center;
  color: #FFD36B;
  font-weight: bold;
}

.page-game-providers__why-choose-section {
  background-color: #111111;
  border: 1px solid #3A2A12;
}

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

.page-game-providers__benefit-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
}

.page-game-providers__benefit-title {
  font-size: 1.5rem;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-game-providers__benefit-description {
  font-size: 0.95rem;
  color: #E5E5E5;
}

.page-game-providers__how-to-start-section {
  background-color: #0A0A0A;
}

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

.page-game-providers__step-card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-providers__step-number {
  width: 50px;
  height: 50px;
  background-color: #F2C14E;
  color: #111111;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-game-providers__step-title {
  font-size: 1.6rem;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-providers__step-description {
  font-size: 0.95rem;
  color: #E5E5E5;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-providers__button--step {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
  padding: 10px 25px;
  width: fit-content;
}

.page-game-providers__button--step:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-game-providers__faq-section {
  background-color: #111111;
  border: 1px solid #3A2A12;
}

.page-game-providers__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-game-providers__faq-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-game-providers__faq-question {
  font-size: 1.2rem;
  color: #F2C14E;
  padding: 18px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-weight: bold;
}

.page-game-providers__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #FFD36B;
}

.page-game-providers__faq-question.active::after {
  content: '-';
}

.page-game-providers__faq-answer {
  font-size: 1rem;
  color: #E5E5E5;
  padding: 0 25px 20px;
  display: none;
}

.page-game-providers__faq-question.active + .page-game-providers__faq-answer {
  display: block;
}

.page-game-providers__cta-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-providers__container {
    padding: 15px;
  }

  .page-game-providers__hero-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-game-providers__hero-description {
    font-size: 0.95rem;
  }

  .page-game-providers__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-providers__button {
    width: 100%;
    padding: 15px 20px;
  }

  .page-game-providers__section-title {
    font-size: 1.8rem;
  }

  .page-game-providers__section-description {
    font-size: 0.9rem;
  }

  .page-game-providers__intro-section,
  .page-game-providers__featured-providers-section,
  .page-game-providers__game-categories-section,
  .page-game-providers__why-choose-section,
  .page-game-providers__how-to-start-section,
  .page-game-providers__faq-section,
  .page-game-providers__cta-section {
    padding: 40px 0;
  }

  .page-game-providers__provider-grid,
  .page-game-providers__category-grid,
  .page-game-providers__benefits-list,
  .page-game-providers__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-game-providers__provider-logo,
  .page-game-providers__category-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-game-providers__provider-card,
  .page-game-providers__category-card {
    max-width: 100%;
  }

  .page-game-providers__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-game-providers__faq-question::after {
    right: 20px;
  }

  .page-game-providers__faq-answer {
    padding: 0 20px 15px;
  }

  /* Critical: prevent content overflow on mobile */
  .page-game-providers img {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure images within content areas are not smaller than 200px */
.page-game-providers img:not(.page-game-providers__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Override for elements that might otherwise be constrained too small by a generic rule */
.page-game-providers__provider-logo,
.page-game-providers__category-image {
  width: 100%; /* Ensure they take full width of their container up to max-width */
  height: auto;
  object-fit: contain; /* For logos */
}

/* Specific rule to ensure any image inside .page-game-providers has a minimum display size */
.page-game-providers img {
  max-width: 100%; /* Important for responsiveness */
  height: auto; /* Maintain aspect ratio */
}

/* Ensure images in content areas are not forced below 200px by CSS */
.page-game-providers__provider-logo, 
.page-game-providers__category-image {
  width: 100%; /* Allows scaling up to container max, but respects min-width/height from HTML */
  height: auto;
  min-width: 200px; /* Explicitly enforce min size via CSS as well */
  min-height: 200px;
}