.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 {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.page-game-reviews-slot-games__hero-title .highlight {
  color: #FFCC00;
}

.page-game-reviews-slot-games__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

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

.page-game-reviews-slot-games__btn--primary {
  background-color: #FFCC00;
  color: #003366;
}

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

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

.page-game-reviews-slot-games__btn--secondary:hover {
  background-color: #001a33;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-game-reviews-slot-games__btn--tertiary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

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

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

.page-game-reviews-slot-games__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-reviews-slot-games__section-title .highlight {
  color: #FFCC00;
}

.page-game-reviews-slot-games__intro-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-game-reviews-slot-games__intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-game-reviews-slot-games__intro-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-reviews-slot-games__intro-item:hover {
  transform: translateY(-5px);
}

.page-game-reviews-slot-games__intro-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-game-reviews-slot-games__intro-item h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-game-reviews-slot-games__intro-item p {
  color: #555;
  font-size: 1.1em;
}

.page-game-reviews-slot-games__reviews-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-game-reviews-slot-games__review-card {
  display: flex;
  flex-direction: column;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-slot-games__review-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-slot-games__review-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

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

.page-game-reviews-slot-games__review-content h3 {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
}

.page-game-reviews-slot-games__game-meta {
  font-style: italic;
  color: #777;
  margin-bottom: 20px;
  font-size: 1em;
}

.page-game-reviews-slot-games__review-content p {
  color: #444;
  margin-bottom: 25px;
  font-size: 1.1em;
}

.page-game-reviews-slot-games__tips-section {
  padding: 80px 0;
  background-color: #f0f4f7;
}

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

.page-game-reviews-slot-games__tip-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-reviews-slot-games__tip-item:hover {
  transform: translateY(-5px);
}

.page-game-reviews-slot-games__tip-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.page-game-reviews-slot-games__tip-item h3 {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
}

.page-game-reviews-slot-games__tip-item p {
  color: #555;
  font-size: 1em;
}

.page-game-reviews-slot-games__cta-section {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

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

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

.page-game-reviews-slot-games__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-reviews-slot-games__responsible-gaming-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-game-reviews-slot-games__responsible-gaming-section p {
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: #555;
}

.page-game-reviews-slot-games__responsible-gaming-image {
  max-width: 150px;
  height: auto;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .page-game-reviews-slot-games__review-card {
    flex-direction: row;
  }

  .page-game-reviews-slot-games__review-image {
    width: 40%;
    height: auto;
    max-height: 400px;
    border-bottom: none;
    border-right: 1px solid #eee;
  }

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

@media (max-width: 767px) {
  .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__section-title {
    font-size: 2em;
  }

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

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

  .page-game-reviews-slot-games__review-image {
    height: 250px;
  }
  
  .page-game-reviews-slot-games__review-content h3 {
    font-size: 1.6em;
  }

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

@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__btn {
    width: 100%;
    max-width: 280px;
  }

  .page-game-reviews-slot-games__cta-buttons .page-game-reviews-slot-games__btn {
    max-width: 90%;
  }
}