/* style/game-reviews-slot-games.css */
.page-game-reviews-slot-games {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-game-reviews-slot-games__hero-section {
  background: linear-gradient(135deg, #2D3E50, #F39C12);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-game-reviews-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
}

.page-game-reviews-slot-games__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-game-reviews-slot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.page-game-reviews-slot-games__btn--primary {
  background-color: #F39C12;
  color: #2D3E50;
  border: 2px solid #F39C12;
}

.page-game-reviews-slot-games__btn--primary:hover {
  background-color: #e08b00;
  border-color: #e08b00;
}

.page-game-reviews-slot-games__btn--secondary {
  background-color: #2D3E50;
  color: #F39C12;
  border: 2px solid #F39C12;
}

.page-game-reviews-slot-games__btn--secondary:hover {
  background-color: #1a2b3c;
  color: #F39C12;
}

.page-game-reviews-slot-games__btn--large {
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-game-reviews-slot-games__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-game-reviews-slot-games__intro-block {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-game-reviews-slot-games__intro-block p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-game-reviews-slot-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-slot-games__image--full-width {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.page-game-reviews-slot-games__image--small {
  max-width: 500px;
  display: block;
  margin: 30px auto;
}

.page-game-reviews-slot-games__article {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-game-reviews-slot-games__heading {
  font-size: 2.2em;
  color: #2D3E50;
  margin-bottom: 25px;
  border-bottom: 3px solid #F39C12;
  padding-bottom: 10px;
}

.page-game-reviews-slot-games__sub-heading {
  font-size: 1.6em;
  color: #F39C12;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-reviews-slot-games__article p {
  margin-bottom: 15px;
  color: #444;
}

.page-game-reviews-slot-games__cta-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #e8eef4; /* Lighter shade of main color */
  border-radius: 8px;
  margin-bottom: 40px;
}

.page-game-reviews-slot-games__cta-section .page-game-reviews-slot-games__heading {
  color: #2D3E50;
  border-bottom: none;
  margin-bottom: 20px;
}

.page-game-reviews-slot-games__cta-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555;
}

.page-game-reviews-slot-games__conclusion-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #2D3E50;
  color: #fff;
  border-radius: 8px;
}

.page-game-reviews-slot-games__conclusion-section .page-game-reviews-slot-games__heading {
  color: #F39C12;
  border-bottom: none;
  margin-bottom: 20px;
}

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

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

  .page-game-reviews-slot-games__hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-reviews-slot-games__heading {
    font-size: 1.8em;
  }

  .page-game-reviews-slot-games__sub-heading {
    font-size: 1.4em;
  }

  .page-game-reviews-slot-games__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-game-reviews-slot-games__btn--large {
    padding: 15px 30px;
    font-size: 1em;
  }

  .page-game-reviews-slot-games__intro-block, 
  .page-game-reviews-slot-games__article, 
  .page-game-reviews-slot-games__cta-section, 
  .page-game-reviews-slot-games__conclusion-section {
    padding: 20px;
    margin-bottom: 30px;
  }
}

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

  .page-game-reviews-slot-games__hero-subtitle {
    font-size: 1em;
  }

  .page-game-reviews-slot-games__heading {
    font-size: 1.5em;
  }

  .page-game-reviews-slot-games__sub-heading {
    font-size: 1.2em;
  }

  .page-game-reviews-slot-games__btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }

  .page-game-reviews-slot-games__btn:last-child {
    margin-bottom: 0;
  }
}