.page-casino-slot-games {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-casino-slot-games__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #0A192F;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.page-casino-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.7; /* Slightly dim image to make text stand out */
}

.page-casino-slot-games__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 80px 20px;
  box-sizing: border-box;
  z-index: 1;
  text-align: center;
}

.page-casino-slot-games__hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino-slot-games__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  font-weight: bold;
  line-height: 1.2;
}

.page-casino-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-slot-games__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-casino-slot-games__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-casino-slot-games__cta-button--inline {
  margin-top: 20px;
}

.page-casino-slot-games__cta-button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-casino-slot-games__cta-button--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-casino-slot-games__cta-button--secondary:hover {
  background-color: #1a2f4c;
  border-color: #e6c200;
}

.page-casino-slot-games__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-casino-slot-games__section-title {
  font-size: 2.5em;
  color: #0A192F; /* Dark blue title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-casino-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold underline */
  border-radius: 2px;
}

.page-casino-slot-games__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-casino-slot-games__features-grid,
.page-casino-slot-games__game-reviews,
.page-casino-slot-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-casino-slot-games__feature-card,
.page-casino-slot-games__game-card,
.page-casino-slot-games__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-casino-slot-games__feature-card:hover,
.page-casino-slot-games__game-card:hover,
.page-casino-slot-games__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-casino-slot-games__feature-icon,
.page-casino-slot-games__game-image,
.page-casino-slot-games__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-casino-slot-games__feature-title,
.page-casino-slot-games__game-title,
.page-casino-slot-games__promo-title {
  font-size: 1.6em;
  color: #0A192F;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-casino-slot-games__game-title a,
.page-casino-slot-games__promo-title a {
  color: #0A192F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-casino-slot-games__game-title a:hover,
.page-casino-slot-games__promo-title a:hover {
  color: #FFD700;
}

.page-casino-slot-games__feature-description,
.page-casino-slot-games__game-excerpt,
.page-casino-slot-games__promo-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-casino-slot-games__game-link,
.page-casino-slot-games__promo-button {
  display: inline-block;
  background-color: #0A192F;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-casino-slot-games__game-link:hover,
.page-casino-slot-games__promo-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-casino-slot-games__guide-list,
.page-casino-slot-games__tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.page-casino-slot-games__guide-list li,
.page-casino-slot-games__tips-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  color: #333333;
}

.page-casino-slot-games__guide-list li strong,
.page-casino-slot-games__tips-list li strong {
  color: #0A192F;
}

.page-casino-slot-games__link {
  color: #0A192F;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-casino-slot-games__link:hover {
  color: #FFD700;
}

.page-casino-slot-games__faq-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-casino-slot-games__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-casino-slot-games__faq-question {
  font-size: 1.3em;
  color: #0A192F;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-casino-slot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-casino-slot-games__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-casino-slot-games__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eeeeee;
  margin-top: 10px;
}

.page-casino-slot-games__faq-answer.active {
  display: block;
}

.page-casino-slot-games__final-cta {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-casino-slot-games__hero-title {
    font-size: 2.8em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 1.2em;
  }
  .page-casino-slot-games__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-casino-slot-games {
    padding-top: var(--header-offset, 80px);
  }
  .page-casino-slot-games__hero-section {
    padding: 30px 15px;
  }
  .page-casino-slot-games__hero-title {
    font-size: 2.2em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 1em;
  }
  .page-casino-slot-games__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-casino-slot-games__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-casino-slot-games__content-area {
    padding: 40px 15px;
  }
  .page-casino-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-casino-slot-games__paragraph {
    font-size: 0.95em;
  }
  .page-casino-slot-games__features-grid,
  .page-casino-slot-games__game-reviews,
  .page-casino-slot-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-slot-games__feature-icon,
  .page-casino-slot-games__game-image,
  .page-casino-slot-games__promo-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
    min-height: 200px;
  }
  .page-casino-slot-games__game-title,
  .page-casino-slot-games__promo-title,
  .page-casino-slot-games__feature-title {
    font-size: 1.4em;
  }
  .page-casino-slot-games__faq-question {
    font-size: 1.1em;
  }
  .page-casino-slot-games__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-casino-slot-games__hero-title {
    font-size: 1.8em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 0.9em;
  }
  .page-casino-slot-games__cta-button {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-casino-slot-games__cta-button--secondary {
    margin-left: 0;
  }
  .page-casino-slot-games__guide-list li,
  .page-casino-slot-games__tips-list li {
    font-size: 0.9em;
  }
  .page-casino-slot-games__final-cta .page-casino-slot-games__cta-button {
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .page-casino-slot-games__final-cta .page-casino-slot-games__cta-button--secondary {
    margin-top: 15px;
  }
}