/* style/slot-games-popular-slots-review.css */
.page-slot-games-popular-slots-review {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text on dark background */
  background-color: #0A2239; /* Deep Sea Blue */
  line-height: 1.6;
}

.page-slot-games-popular-slots-review__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-slot-games-popular-slots-review__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #304D6D 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

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

.page-slot-games-popular-slots-review__subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-slot-games-popular-slots-review__cta-button {
  display: inline-block;
  background-color: #DC143C; /* Red for CTA */
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-slot-games-popular-slots-review__cta-button:hover {
  background-color: #C2002B; /* Darker red on hover */
  transform: translateY(-3px);
}

.page-slot-games-popular-slots-review__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-slot-games-popular-slots-review__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slot-games-popular-slots-review__section:last-of-type {
  border-bottom: none;
}

.page-slot-games-popular-slots-review__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-games-popular-slots-review__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  border-radius: 2px;
}

.page-slot-games-popular-slots-review__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games-popular-slots-review__grid-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-slot-games-popular-slots-review__grid-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-slot-games-popular-slots-review__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games-popular-slots-review__image--small {
  max-width: 120px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-slot-games-popular-slots-review__image--large {
  max-width: 600px;
  margin: 0 auto 30px auto;
  display: block;
}

.page-slot-games-popular-slots-review__item-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games-popular-slots-review__game-card {
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .page-slot-games-popular-slots-review__game-card {
    flex-direction: row;
  }
}

.page-slot-games-popular-slots-review__game-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 5px solid #FFD700;
}

@media (min-width: 768px) {
  .page-slot-games-popular-slots-review__game-image {
    width: 40%;
    min-width: 350px;
    height: auto;
    border-bottom: none;
    border-right: 5px solid #FFD700;
  }
}

.page-slot-games-popular-slots-review__game-info {
  padding: 30px;
  flex-grow: 1;
}

.page-slot-games-popular-slots-review__game-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games-popular-slots-review__game-subtitle {
  font-size: 1.4em;
  color: #DC143C;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-slot-games-popular-slots-review__game-info p {
  margin-bottom: 10px;
  color: #E0E0E0;
}

.page-slot-games-popular-slots-review__game-info ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-slot-games-popular-slots-review__game-info ul li {
  margin-bottom: 5px;
}

.page-slot-games-popular-slots-review__tips .page-slot-games-popular-slots-review__list {
  list-style: none;
  padding: 0;
}

.page-slot-games-popular-slots-review__tips .page-slot-games-popular-slots-review__list li {
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games-popular-slots-review__list-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games-popular-slots-review__responsible-gaming p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #E0E0E0;
}

.page-slot-games-popular-slots-review__list--bullets {
  list-style-type: disc;
  margin: 0 auto 30px auto;
  padding-left: 40px;
  max-width: 800px;
  color: #E0E0E0;
}

.page-slot-games-popular-slots-review__list--bullets li {
  margin-bottom: 10px;
}

.page-slot-games-popular-slots-review__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-slot-games-popular-slots-review__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-slot-games-popular-slots-review__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #DC143C;
  transition: transform 0.3s ease;
}

.page-slot-games-popular-slots-review__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-slot-games-popular-slots-review__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  display: none;
}

.page-slot-games-popular-slots-review__faq-answer.active {
  display: block;
}

.page-slot-games-popular-slots-review__conclusion .page-slot-games-popular-slots-review__text-content {
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games-popular-slots-review__main-title {
    font-size: 2.8em;
  }
  .page-slot-games-popular-slots-review__section-title {
    font-size: 2em;
  }
  .page-slot-games-popular-slots-review__game-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-popular-slots-review__hero-section {
    padding: 80px 0;
  }
  .page-slot-games-popular-slots-review__main-title {
    font-size: 2.2em;
  }
  .page-slot-games-popular-slots-review__subtitle {
    font-size: 1.1em;
  }
  .page-slot-games-popular-slots-review__section {
    padding: 40px 0;
  }
  .page-slot-games-popular-slots-review__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slot-games-popular-slots-review__grid-item {
    padding: 20px;
  }
  .page-slot-games-popular-slots-review__item-title {
    font-size: 1.4em;
  }
  .page-slot-games-popular-slots-review__game-image {
    height: 250px;
  }
  .page-slot-games-popular-slots-review__game-info {
    padding: 20px;
  }
  .page-slot-games-popular-slots-review__game-title {
    font-size: 1.6em;
  }
  .page-slot-games-popular-slots-review__game-subtitle {
    font-size: 1.2em;
  }
  .page-slot-games-popular-slots-review__list-title {
    font-size: 1.6em;
  }
  .page-slot-games-popular-slots-review__faq-question {
    font-size: 1.3em;
  }
  .page-slot-games-popular-slots-review__faq-answer {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-slot-games-popular-slots-review__hero-section {
    padding: 60px 0;
  }
  .page-slot-games-popular-slots-review__main-title {
    font-size: 1.8em;
  }
  .page-slot-games-popular-slots-review__subtitle {
    font-size: 1em;
  }
  .page-slot-games-popular-slots-review__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slot-games-popular-slots-review__section {
    padding: 30px 0;
  }
  .page-slot-games-popular-slots-review__section-title {
    font-size: 1.6em;
    margin-bottom: 25px;
  }
  .page-slot-games-popular-slots-review__grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games-popular-slots-review__game-card {
    margin-bottom: 25px;
  }
  .page-slot-games-popular-slots-review__game-info {
    padding: 15px;
  }
  .page-slot-games-popular-slots-review__game-title {
    font-size: 1.4em;
  }
  .page-slot-games-popular-slots-review__list-title {
    font-size: 1.4em;
  }
  .page-slot-games-popular-slots-review__faq-question {
    font-size: 1.2em;
  }
  .page-slot-games-popular-slots-review__list--bullets {
    padding-left: 20px;
  }
}