/* style/index-top-rated-slot-games.css */

/* Variables */
:root {
  --page-primary-color: #FFD700; /* Gold */
  --page-secondary-color: #1A2A3A; /* Dark Blue */
  --page-text-light: #F0F0F0;
  --page-text-dark: #1A2A3A;
  --page-background-dark: #121212;
  --page-background-light: #282828;
  --page-accent-gold-darker: #b39700; /* Darker gold for contrast */
}

.page-index-top-rated-slot-games {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-light);
  background-color: var(--page-background-dark);
  line-height: 1.6;
}

.page-index-top-rated-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-top-rated-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-top-rated-slot-games__section--intro {
  background-color: var(--page-background-light);
}

.page-index-top-rated-slot-games__section-title {
  font-size: 2.8em;
  color: var(--page-primary-color);
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-top-rated-slot-games__sub-title {
  font-size: 2em;
  color: var(--page-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-index-top-rated-slot-games__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--page-text-light);
  text-align: left;
}

.page-index-top-rated-slot-games__center-text {
  text-align: center;
}

/* Hero Section */
.page-index-top-rated-slot-games__hero {
  position: relative;
  background: linear-gradient(135deg, var(--page-secondary-color) 0%, #0d1a2a 100%); /* Darker blue gradient */
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px;
}

.page-index-top-rated-slot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.page-index-top-rated-slot-games__hero .page-index-top-rated-slot-games__container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-index-top-rated-slot-games__hero-title {
  font-size: 3.8em;
  color: var(--page-primary-color);
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-index-top-rated-slot-games__hero-subtitle {
  font-size: 1.5em;
  color: var(--page-text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-index-top-rated-slot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-index-top-rated-slot-games__btn--primary {
  background-color: var(--page-primary-color);
  color: var(--page-secondary-color); /* Dark text on gold button */
  border: 2px solid var(--page-primary-color);
}

.page-index-top-rated-slot-games__btn--primary:hover {
  background-color: var(--page-accent-gold-darker);
  border-color: var(--page-accent-gold-darker);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-top-rated-slot-games__btn--secondary {
  background-color: transparent;
  color: var(--page-primary-color);
  border: 2px solid var(--page-primary-color);
}

.page-index-top-rated-slot-games__btn--secondary:hover {
  background-color: var(--page-primary-color);
  color: var(--page-secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-top-rated-slot-games__btn--large {
  padding: 18px 40px;
  font-size: 1.4em;
}

.page-index-top-rated-slot-games__center-cta {
  margin-top: 50px;
  text-align: center;
}

/* Lists */
.page-index-top-rated-slot-games__list {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-index-top-rated-slot-games__list li {
  background-color: var(--page-background-light);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid var(--page-primary-color);
  border-radius: 5px;
  font-size: 1.1em;
  color: var(--page-text-light);
}

.page-index-top-rated-slot-games__list--ordered {
  list-style: decimal;
  padding-left: 40px;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-index-top-rated-slot-games__list--ordered li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--page-text-light);
}

/* Image Styling */
.page-index-top-rated-slot-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-top-rated-slot-games__image--inline {
  max-width: 800px;
  margin: 40px auto;
}

/* Game Cards */
.page-index-top-rated-slot-games__section--games .page-index-top-rated-slot-games__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-index-top-rated-slot-games__game-card {
  display: flex;
  flex-direction: column;
  background-color: var(--page-background-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.page-index-top-rated-slot-games__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-top-rated-slot-games__game-content {
  padding: 30px;
}

.page-index-top-rated-slot-games__game-title {
  font-size: 1.8em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-index-top-rated-slot-games__game-description {
  font-size: 1.05em;
  color: var(--page-text-light);
  margin-bottom: 25px;
}

.page-index-top-rated-slot-games__game-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-index-top-rated-slot-games__game-features li {
  margin-bottom: 8px;
  color: var(--page-text-light);
}

.page-index-top-rated-slot-games__game-features strong {
  color: var(--page-primary-color);
}

.page-index-top-rated-slot-games__game-card .page-index-top-rated-slot-games__btn {
  margin-top: 15px;
  width: fit-content;
}

/* Tips Section */
.page-index-top-rated-slot-games__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-top-rated-slot-games__tip-card {
  background-color: var(--page-background-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-top-rated-slot-games__tip-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.page-index-top-rated-slot-games__tip-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-top-rated-slot-games__tip-title {
  font-size: 1.6em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-index-top-rated-slot-games__tip-description {
  font-size: 1em;
  color: var(--page-text-light);
}

/* FAQ Section */
.page-index-top-rated-slot-games__faq-item {
  background-color: var(--page-background-light);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-top-rated-slot-games__faq-question {
  font-size: 1.4em;
  color: var(--page-primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-top-rated-slot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: var(--page-primary-color);
  transition: transform 0.3s ease;
}

.page-index-top-rated-slot-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-top-rated-slot-games__faq-answer {
  font-size: 1.05em;
  color: var(--page-text-light);
  display: none;
  padding-top: 10px;
}

.page-index-top-rated-slot-games__faq-answer.active {
  display: block;
}

/* Final CTA */
.page-index-top-rated-slot-games__section--cta-final {
  background: linear-gradient(90deg, var(--page-primary-color) 0%, var(--page-accent-gold-darker) 100%);
  color: var(--page-secondary-color); /* Dark text on gold background */
  padding: 80px 0;
}

.page-index-top-rated-slot-games__section--cta-final .page-index-top-rated-slot-games__section-title {
  color: var(--page-secondary-color);
  text-shadow: none;
}

.page-index-top-rated-slot-games__section--cta-final .page-index-top-rated-slot-games__text {
  color: var(--page-secondary-color);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-top-rated-slot-games__section--cta-final .page-index-top-rated-slot-games__btn {
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
  border-color: var(--page-secondary-color);
}

.page-index-top-rated-slot-games__section--cta-final .page-index-top-rated-slot-games__btn:hover {
  background-color: #0d1a2a;
  border-color: #0d1a2a;
  color: var(--page-primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-top-rated-slot-games__hero-title {
    font-size: 2.5em;
  }

  .page-index-top-rated-slot-games__hero-subtitle {
    font-size: 1.2em;
  }

  .page-index-top-rated-slot-games__section-title {
    font-size: 2em;
  }

  .page-index-top-rated-slot-games__sub-title {
    font-size: 1.6em;
  }

  .page-index-top-rated-slot-games__game-card {
    flex-direction: column;
  }

  .page-index-top-rated-slot-games__game-image {
    height: 200px;
  }

  .page-index-top-rated-slot-games__grid {
    grid-template-columns: 1fr;
  }

  .page-index-top-rated-slot-games__btn {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-index-top-rated-slot-games__btn--large {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-index-top-rated-slot-games__hero {
    padding: 60px 0;
  }

  .page-index-top-rated-slot-games__hero-title {
    font-size: 2em;
  }

  .page-index-top-rated-slot-games__hero-subtitle {
    font-size: 1em;
  }

  .page-index-top-rated-slot-games__section {
    padding: 40px 0;
  }

  .page-index-top-rated-slot-games__section-title {
    font-size: 1.8em;
  }

  .page-index-top-rated-slot-games__text,
  .page-index-top-rated-slot-games__list li,
  .page-index-top-rated-slot-games__list--ordered li,
  .page-index-top-rated-slot-games__game-description,
  .page-index-top-rated-slot-games__tip-description,
  .page-index-top-rated-slot-games__faq-answer {
    font-size: 0.95em;
  }

  .page-index-top-rated-slot-games__faq-question {
    font-size: 1.2em;
  }

  .page-index-top-rated-slot-games__game-content,
  .page-index-top-rated-slot-games__tip-card,
  .page-index-top-rated-slot-games__faq-item {
    padding: 20px;
  }
}