/* style/game-reviews-popular-slots.css */
.page-game-reviews-popular-slots {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2239; /* Primary dark blue background */
}

.page-game-reviews-popular-slots__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0A2239 0%, #1A3A5A 100%); /* Dark blue gradient */
  position: relative;
  overflow: hidden;
}

.page-game-reviews-popular-slots__hero-content {
  max-width: 900px;
  z-index: 1;
}

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

.page-game-reviews-popular-slots__hero-description {
  font-size: 1.3em;
  color: #FFFFFF; /* White for hero description */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews-popular-slots__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  overflow: hidden;
}

.page-game-reviews-popular-slots__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(50%);
}

.page-game-reviews-popular-slots__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-game-reviews-popular-slots__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2239; /* Dark blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-popular-slots__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews-popular-slots__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-game-reviews-popular-slots__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-popular-slots__section {
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews-popular-slots__section--intro {
  background-color: #0A2239;
}

.page-game-reviews-popular-slots__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 40px;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.page-game-reviews-popular-slots__section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0; /* Light gray for paragraphs */
}

.page-game-reviews-popular-slots__link-inline {
  color: #FFD700; /* Gold for inline links */
  text-decoration: underline;
  font-weight: bold;
}

.page-game-reviews-popular-slots__link-inline:hover {
  color: #FFFFFF;
}

.page-game-reviews-popular-slots__highlight-text {
  color: #FFD700;
  font-weight: bold;
}

.page-game-reviews-popular-slots__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-popular-slots__game-card {
  display: flex;
  flex-direction: column;
  background-color: #1A3A5A; /* Slightly lighter dark blue */
  border-radius: 15px;
  margin-bottom: 60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: left;
  padding: 30px;
}

.page-game-reviews-popular-slots__game-card--reverse {
  flex-direction: column-reverse;
}

.page-game-reviews-popular-slots__game-info {
  padding: 20px;
}

.page-game-reviews-popular-slots__game-title {
  font-size: 2em;
  color: #FFD700; /* Gold for game titles */
  margin-bottom: 15px;
}

.page-game-reviews-popular-slots__game-description {
  font-size: 1.05em;
  line-height: 1.7;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-game-reviews-popular-slots__game-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-game-reviews-popular-slots__game-features li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #FFFFFF;
}

.page-game-reviews-popular-slots__game-features li strong {
  color: #FFD700;
}

.page-game-reviews-popular-slots__game-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-popular-slots__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-game-reviews-popular-slots__section--tips {
  background-color: #0A2239;
}

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

.page-game-reviews-popular-slots__tip-item {
  background-color: #1A3A5A;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-popular-slots__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-game-reviews-popular-slots__tip-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for tip titles */
  margin-bottom: 15px;
}

.page-game-reviews-popular-slots__tip-item p {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.6;
}

.page-game-reviews-popular-slots__call-to-action-text {
  font-size: 1.2em;
  margin-top: 40px;
  font-weight: bold;
  color: #FFFFFF;
}

.page-game-reviews-popular-slots__section--cta {
  background-color: #1A3A5A;
  padding: 100px 0;
}

.page-game-reviews-popular-slots__container--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-game-reviews-popular-slots__cta-content {
  text-align: center;
  max-width: 800px;
}

.page-game-reviews-popular-slots__cta-content .page-game-reviews-popular-slots__section-title {
  color: #FFD700;
}

.page-game-reviews-popular-slots__cta-content p {
  color: #E0E0E0;
  font-size: 1.15em;
  margin-bottom: 30px;
}

.page-game-reviews-popular-slots__cta-image {
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.page-game-reviews-popular-slots__section--responsible-gaming {
  background-color: #0A2239;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-game-reviews-popular-slots__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-game-reviews-popular-slots__hero-content {
    text-align: left;
    margin-right: 40px;
  }

  .page-game-reviews-popular-slots__hero-image-container {
    position: static;
    width: 40%;
    height: auto;
    opacity: 1;
    filter: none;
  }

  .page-game-reviews-popular-slots__hero-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: none;
  }

  .page-game-reviews-popular-slots__game-card {
    flex-direction: row;
    text-align: left;
  }

  .page-game-reviews-popular-slots__game-card--reverse {
    flex-direction: row-reverse;
  }

  .page-game-reviews-popular-slots__game-image {
    width: 40%;
    height: auto;
  }

  .page-game-reviews-popular-slots__game-info {
    flex: 1;
    padding: 30px;
  }

  .page-game-reviews-popular-slots__container--flex {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: left;
  }

  .page-game-reviews-popular-slots__cta-content {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .page-game-reviews-popular-slots__hero-title {
    font-size: 4em;
  }

  .page-game-reviews-popular-slots__section-title {
    font-size: 3em;
  }

  .page-game-reviews-popular-slots__game-title {
    font-size: 2.2em;
  }
}