.page-game-reviews-game-provider-analysis {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-game-reviews-game-provider-analysis .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-reviews-game-provider-analysis .hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a4a6e 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-game-reviews-game-provider-analysis .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-game-provider-analysis .hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-game-reviews-game-provider-analysis .cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #1A202C; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-reviews-game-provider-analysis .cta-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-game-reviews-game-provider-analysis .large-cta {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-game-reviews-game-provider-analysis .small-cta {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-game-reviews-game-provider-analysis .content-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-reviews-game-provider-analysis .content-section:last-of-type {
  border-bottom: none;
}

.page-game-reviews-game-provider-analysis .section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-game-reviews-game-provider-analysis .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-game-reviews-game-provider-analysis .subsection-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-reviews-game-provider-analysis .content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-game-reviews-game-provider-analysis .content-wrapper.reverse-layout {
  flex-direction: row-reverse;
}

.page-game-reviews-game-provider-analysis .text-content {
  flex: 1;
  font-size: 1.1em;
}

.page-game-reviews-game-provider-analysis .image-content {
  flex: 1;
  text-align: center;
}

.page-game-reviews-game-provider-analysis .section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-game-provider-analysis .feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-game-reviews-game-provider-analysis .feature-list li {
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
}

.page-game-reviews-game-provider-analysis .feature-list li strong {
  color: #FFD700;
}

.page-game-reviews-game-provider-analysis .small-text {
  font-size: 0.9em;
  text-align: center;
  margin-top: 20px;
  color: #A0A0A0;
}

.page-game-reviews-game-provider-analysis .faq-section {
  background-color: #1A202C;
  padding-bottom: 100px;
}

.page-game-reviews-game-provider-analysis .faq-item {
  background-color: #2D3748; /* Slightly lighter dark blue for FAQ item */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-game-provider-analysis .faq-question {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-reviews-game-provider-analysis .faq-answer {
  color: #CCCCCC;
  font-size: 1.1em;
  display: block; /* Always show answer for simplicity */
}

.page-game-reviews-game-provider-analysis .floating-cta-section {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-game-reviews-game-provider-analysis .floating-cta-button {
  display: flex;
  align-items: center;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.page-game-reviews-game-provider-analysis .floating-cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-5px) scale(1.05);
}

.page-game-reviews-game-provider-analysis .cta-text {
  margin-right: 10px;
}

.page-game-reviews-game-provider-analysis .cta-icon {
  font-size: 1.5em;
  line-height: 1;
}

@media (max-width: 768px) {
  .page-game-reviews-game-provider-analysis .hero-title {
    font-size: 2.5em;
  }

  .page-game-reviews-game-provider-analysis .hero-description {
    font-size: 1em;
  }

  .page-game-reviews-game-provider-analysis .section-title {
    font-size: 2em;
  }

  .page-game-reviews-game-provider-analysis .content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .page-game-reviews-game-provider-analysis .content-wrapper.reverse-layout {
    flex-direction: column;
  }

  .page-game-reviews-game-provider-analysis .floating-cta-section {
    bottom: 15px;
    right: 15px;
  }

  .page-game-reviews-game-provider-analysis .floating-cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-game-reviews-game-provider-analysis .cta-text {
    margin-right: 5px;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-game-provider-analysis .hero-title {
    font-size: 2em;
  }

  .page-game-reviews-game-provider-analysis .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-reviews-game-provider-analysis .large-cta {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-game-reviews-game-provider-analysis .section-title {
    font-size: 1.8em;
  }

  .page-game-reviews-game-provider-analysis .subsection-title {
    font-size: 1.5em;
  }

  .page-game-reviews-game-provider-analysis .faq-question {
    font-size: 1.2em;
  }

  .page-game-reviews-game-provider-analysis .faq-answer {
    font-size: 0.95em;
  }

  .page-game-reviews-game-provider-analysis .floating-cta-button {
    padding: 10px 15px;
    font-size: 0.8em;
  }
}