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

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

.page-game-reviews-slot-games__hero {
  background: linear-gradient(135deg, #0A2463 0%, #0A2463 70%, #FFD700 100%);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-slot-games__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:slot_pattern,abstract,geometric]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-reviews-slot-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-game-reviews-slot-games__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-game-reviews-slot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.page-game-reviews-slot-games__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-game-reviews-slot-games__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-reviews-slot-games__btn--secondary {
  background-color: #0A2463;
  color: #FFD700;
  border: 1px solid #FFD700;
}

.page-game-reviews-slot-games__btn--secondary:hover {
  background-color: #071a44;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-game-reviews-slot-games__btn--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-top: 30px;
}

.page-game-reviews-slot-games__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.page-game-reviews-slot-games__section:nth-child(even) {
  background-color: #f0f4f7;
}

.page-game-reviews-slot-games__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-game-reviews-slot-games__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.page-game-reviews-slot-games__feature-item {
  background-color: #0A2463;
  color: #fff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-game-reviews-slot-games__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-reviews-slot-games__game-review-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin-bottom: 40px;
  overflow: hidden;
}

.page-game-reviews-slot-games__game-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-game-reviews-slot-games__game-content {
  padding: 30px;
}

.page-game-reviews-slot-games__game-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-game-reviews-slot-games__game-content p {
  margin-bottom: 10px;
  font-size: 1.05em;
  text-align: justify;
}

.page-game-reviews-slot-games__game-content strong {
  color: #0A2463;
}

.page-game-reviews-slot-games__numbered-list {
  list-style: none;
  counter-reset: my-counter;
  padding: 0;
}

.page-game-reviews-slot-games__numbered-list li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 60px;
}

.page-game-reviews-slot-games__numbered-list li::before {
  counter-increment: my-counter;
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A2463;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-game-reviews-slot-games__numbered-list h3 {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 10px;
  margin-top: 0;
}

.page-game-reviews-slot-games__numbered-list p {
  font-size: 1.1em;
  text-align: justify;
}

.page-game-reviews-slot-games__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-reviews-slot-games__promo-list li {
  background-color: #e9f0f5;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  color: #0A2463;
  font-weight: 500;
  font-size: 1.1em;
}

.page-game-reviews-slot-games__app-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-slot-games__app-features ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.page-game-reviews-slot-games__app-features li {
  background-color: #0A2463;
  color: #fff;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 20px;
  font-size: 1.1em;
}

.page-game-reviews-slot-games__app-img {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.page-game-reviews-slot-games__responsible-gaming p {
  text-align: center;
  font-style: italic;
  color: #555;
  font-size: 1.1em;
}

.page-game-reviews-slot-games__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-game-reviews-slot-games__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-game-reviews-slot-games__faq-answer {
  font-size: 1.05em;
  color: #555;
  margin-top: 0;
  display: block; /* For now, later JS can toggle this */
}

.page-game-reviews-slot-games__cta {
  background-color: #0A2463;
  color: #fff;
  text-align: center;
  padding: 80px 0;
  border-radius: 8px;
}

.page-game-reviews-slot-games__cta-content {
  max-width: 800px;
}

.page-game-reviews-slot-games__cta .page-game-reviews-slot-games__section-title {
  color: #FFD700;
}

.page-game-reviews-slot-games__cta .page-game-reviews-slot-games__section-title::after {
  background-color: #fff;
}

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

/* Responsive Design */
@media (min-width: 768px) {
  .page-game-reviews-slot-games__game-review-card {
    flex-direction: row;
  }

  .page-game-reviews-slot-games__game-img {
    width: 40%;
    height: auto;
  }

  .page-game-reviews-slot-games__game-content {
    width: 60%;
  }

  .page-game-reviews-slot-games__app-features {
    flex-direction: row;
    justify-content: center;
    text-align: left;
  }

  .page-game-reviews-slot-games__app-features ul {
    text-align: left;
  }
}

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

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

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

  .page-game-reviews-slot-games__game-review-card {
    flex-direction: column;
  }

  .page-game-reviews-slot-games__game-img {
    height: 200px;
  }

  .page-game-reviews-slot-games__game-content {
    padding: 20px;
  }

  .page-game-reviews-slot-games__feature-item {
    padding: 20px;
  }

  .page-game-reviews-slot-games__numbered-list li {
    padding-left: 50px;
  }

  .page-game-reviews-slot-games__numbered-list li::before {
    width: 40px;
    height: 40px;
    font-size: 1.3em;
  }
}