.page-game-reviews-roulette {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray text for dark background */
  background-color: #0A192F; /* Main background color */
  line-height: 1.6;
}

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

.page-game-reviews-roulette__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #30475E 100%); /* Gradient for hero */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-roulette__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-game-reviews-roulette__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews-roulette__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

.page-game-reviews-roulette__section {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-game-reviews-roulette__section--dark {
  background-color: #1A2A40;
}

.page-game-reviews-roulette__section h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-reviews-roulette__section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-reviews-roulette__section h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-reviews-roulette__section p {
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-game-reviews-roulette__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-game-reviews-roulette__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-game-reviews-roulette__btn--primary:hover {
  background-color: #e6c200;
  color: #000000;
}

.page-game-reviews-roulette__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-game-reviews-roulette__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-game-reviews-roulette__btn--tertiary {
  background-color: #30475E;
  color: #FFFFFF;
  border: 2px solid #30475E;
  margin-left: 20px;
}

.page-game-reviews-roulette__btn--tertiary:hover {
  background-color: #4A637C;
  color: #FFFFFF;
}

.page-game-reviews-roulette__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-game-reviews-roulette__feature-item {
  background-color: #1A2A40;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-game-reviews-roulette__feature-item:hover {
  transform: translateY(-10px);
}

.page-game-reviews-roulette__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-game-reviews-roulette__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
}

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

.page-game-reviews-roulette__game-type-item {
  background-color: #0A192F;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-game-reviews-roulette__game-type-item h3 {
  color: #FFD700;
  font-size: 1.6em;
}

.page-game-reviews-roulette__game-type-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 20px 0;
  border: 2px solid #FFD700;
}

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

.page-game-reviews-roulette__strategy-item {
  background-color: #1A2A40;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-roulette__strategy-item h3 {
  color: #FFD700;
  font-size: 1.6em;
}

.page-game-reviews-roulette__strategy-image {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 3px solid #FFD700;
}

.page-game-reviews-roulette__call-to-action {
  background: linear-gradient(45deg, #0A192F, #30475E);
  text-align: center;
  padding: 80px 20px;
}

.page-game-reviews-roulette__call-to-action h2 {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-game-reviews-roulette__call-to-action p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFFFFF;
}

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

.page-game-reviews-roulette__faq {
  margin-top: 40px;
}

.page-game-reviews-roulette__faq-item {
  background-color: #1A2A40;
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-roulette__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-game-reviews-roulette__faq-item p {
  color: #e0e0e0;
  font-size: 1.1em;
}

.page-game-reviews-roulette__final-cta {
  background-color: #0A192F;
  text-align: center;
  padding: 60px 20px;
}

.page-game-reviews-roulette__final-cta h2 {
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-reviews-roulette__final-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-reviews-roulette__hero h1 {
    font-size: 2.5em;
  }

  .page-game-reviews-roulette__hero p {
    font-size: 1em;
  }

  .page-game-reviews-roulette__section h2 {
    font-size: 2em;
  }

  .page-game-reviews-roulette__section h3 {
    font-size: 1.5em;
  }

  .page-game-reviews-roulette__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin-left: 0 !important; /* Override margin for better stacking */
  }

  .page-game-reviews-roulette__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .page-game-reviews-roulette__btn--secondary, .page-game-reviews-roulette__btn--tertiary {
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-roulette__hero h1 {
    font-size: 2em;
  }

  .page-game-reviews-roulette__hero p {
    font-size: 0.9em;
  }

  .page-game-reviews-roulette__section h2 {
    font-size: 1.8em;
  }

  .page-game-reviews-roulette__section h3 {
    font-size: 1.3em;
  }

  .page-game-reviews-roulette__hero, .page-game-reviews-roulette__section {
    padding: 40px 15px;
  }

  .page-game-reviews-roulette__btn {
    width: 100%;
    max-width: 280px;
  }
}