/* style/game-reviews-game-providers-introduction.css */

.page-game-reviews-game-providers-introduction {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A2239; /* Main dark background */
}

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

.page-game-reviews-game-providers-introduction__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%); /* Dark blue gradient */
  position: relative;
  overflow: hidden;
  color: #F8F8F8;
}

.page-game-reviews-game-providers-introduction__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-reviews-game-providers-introduction__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B44B; /* Accent gold for title */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-game-providers-introduction__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  line-height: 1.5;
  color: #D3D3D3;
}

.page-game-reviews-game-providers-introduction__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-game-reviews-game-providers-introduction__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-game-reviews-game-providers-introduction__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(224, 180, 75, 0.2);
}

.page-game-reviews-game-providers-introduction__section:last-of-type {
  border-bottom: none;
}

.page-game-reviews-game-providers-introduction__section-title {
  font-size: 2.5em;
  color: #E0B44B; /* Accent gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-reviews-game-providers-introduction__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B44B;
  border-radius: 2px;
}

.page-game-reviews-game-providers-introduction__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #F8F8F8;
  text-align: justify;
}

.page-game-reviews-game-providers-introduction__text-block a {
  color: #E0B44B;
  text-decoration: none;
  font-weight: bold;
}

.page-game-reviews-game-providers-introduction__text-block a:hover {
  text-decoration: underline;
}

.page-game-reviews-game-providers-introduction__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;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-game-reviews-game-providers-introduction__btn--primary {
  background-color: #E0B44B; /* Accent gold */
  color: #0A2239; /* Dark text for primary button */
}

.page-game-reviews-game-providers-introduction__btn--primary:hover {
  background-color: #f0c55a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 180, 75, 0.4);
}

.page-game-reviews-game-providers-introduction__btn--secondary {
  background-color: #0A2239; /* Dark blue background */
  color: #E0B44B; /* Gold text for secondary button */
  border: 2px solid #E0B44B;
  margin-left: 15px;
}

.page-game-reviews-game-providers-introduction__btn--secondary:hover {
  background-color: #1a3a5a;
  color: #f0c55a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(224, 180, 75, 0.2);
}

.page-game-reviews-game-providers-introduction__provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-game-providers-introduction__provider-card {
  background-color: #1a3a5a; /* Slightly lighter dark blue */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-game-providers-introduction__provider-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-game-providers-introduction__provider-logo {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Make logos pop on dark background */
}

.page-game-reviews-game-providers-introduction__provider-name {
  font-size: 1.8em;
  color: #E0B44B;
  margin-bottom: 15px;
}

.page-game-reviews-game-providers-introduction__provider-description {
  font-size: 1em;
  line-height: 1.7;
  color: #D3D3D3;
  margin-bottom: 25px;
}

.page-game-reviews-game-providers-introduction__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-game-reviews-game-providers-introduction__benefits-list li {
  background-color: #1a3a5a;
  padding: 20px 25px;
  border-left: 5px solid #E0B44B;
  border-radius: 5px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #F8F8F8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-game-providers-introduction__benefits-list li strong {
  color: #E0B44B;
}

.page-game-reviews-game-providers-introduction__benefits-list li a {
  color: #E0B44B;
  text-decoration: none;
  font-weight: bold;
}

.page-game-reviews-game-providers-introduction__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-game-providers-introduction__cta-content {
  text-align: center;
  padding: 50px 20px;
  background-color: #1a3a5a;
  border-radius: 15px;
  margin: 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-game-providers-introduction__cta-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-game-reviews-game-providers-introduction__faq-item {
  background-color: #1a3a5a;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-game-providers-introduction__faq-question {
  font-size: 1.4em;
  color: #E0B44B;
  margin-bottom: 10px;
}

.page-game-reviews-game-providers-introduction__faq-answer {
  font-size: 1.05em;
  line-height: 1.7;
  color: #D3D3D3;
}

.page-game-reviews-game-providers-introduction__faq-answer a {
  color: #E0B44B;
  text-decoration: none;
  font-weight: bold;
}

.page-game-reviews-game-providers-introduction__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-game-providers-introduction__hero-title {
    font-size: 2.8em;
  }

  .page-game-reviews-game-providers-introduction__hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-reviews-game-providers-introduction__section-title {
    font-size: 2em;
  }

  .page-game-reviews-game-providers-introduction__provider-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-reviews-game-providers-introduction__hero {
    padding: 60px 15px;
  }

  .page-game-reviews-game-providers-introduction__hero-title {
    font-size: 2.2em;
  }

  .page-game-reviews-game-providers-introduction__hero-subtitle {
    font-size: 1em;
  }

  .page-game-reviews-game-providers-introduction__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-reviews-game-providers-introduction__btn--secondary {
    margin-left: 0;
    margin-top: 10px;
  }

  .page-game-reviews-game-providers-introduction__section {
    padding: 40px 0;
  }

  .page-game-reviews-game-providers-introduction__section-title {
    font-size: 1.8em;
  }

  .page-game-reviews-game-providers-introduction__text-block {
    font-size: 0.95em;
  }

  .page-game-reviews-game-providers-introduction__provider-card {
    padding: 20px;
  }

  .page-game-reviews-game-providers-introduction__provider-name {
    font-size: 1.5em;
  }

  .page-game-reviews-game-providers-introduction__benefits-list li {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-game-reviews-game-providers-introduction__faq-question {
    font-size: 1.2em;
  }

  .page-game-reviews-game-providers-introduction__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-game-providers-introduction__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews-game-providers-introduction__hero-subtitle {
    font-size: 0.9em;
  }
  .page-game-reviews-game-providers-introduction__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews-game-providers-introduction__btn {
    width: 100%;
    margin-left: 0;
  }
  .page-game-reviews-game-providers-introduction__cta-buttons {
    flex-direction: column;
  }
  .page-game-reviews-game-providers-introduction__provider-grid {
    grid-template-columns: 1fr;
  }
}