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

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

.page-casino-slot-games__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0056B3; /* Main brand color for hero background */
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.page-casino-slot-games__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 600px; /* Ensure hero section has a decent height */
}

.page-casino-slot-games__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Make image subtle behind text */
}

.page-casino-slot-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-casino-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.page-casino-slot-games__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-casino-slot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-casino-slot-games__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #000000;
}

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

.page-casino-slot-games__btn--secondary {
  background-color: #0056B3; /* Main brand color */
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-casino-slot-games__btn--secondary:hover {
  background-color: #004080;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-casino-slot-games__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-casino-slot-games__intro-section,
.page-casino-slot-games__game-types,
.page-casino-slot-games__features-section,
.page-casino-slot-games__providers-section,
.page-casino-slot-games__cta-section,
.page-casino-slot-games__faq-section {
  padding: 80px 0;
}

.page-casino-slot-games__section-title {
  font-size: 2.8em;
  color: #0056B3;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-casino-slot-games__section-subtitle {
  font-size: 1.3em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
}

.page-casino-slot-games__text-content {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-casino-slot-games__text-content--center {
  text-align: center;
}

.page-casino-slot-games__game-types {
  background-color: #f9f9f9;
}

.page-casino-slot-games__type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-casino-slot-games__type-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-casino-slot-games__type-card:hover {
  transform: translateY(-10px);
}

.page-casino-slot-games__type-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-casino-slot-games__type-title {
  font-size: 1.8em;
  color: #0056B3;
  margin-bottom: 15px;
}

.page-casino-slot-games__type-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-casino-slot-games__features-section {
  background-color: #eef7ff; /* Light blue background */
}

.page-casino-slot-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-casino-slot-games__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-casino-slot-games__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Ensure min size */
  min-height: 200px; /* Ensure min size */
}

.page-casino-slot-games__feature-title {
  font-size: 1.5em;
  color: #0056B3;
  margin-bottom: 10px;
}

.page-casino-slot-games__feature-description {
  font-size: 0.95em;
  color: #555555;
}

.page-casino-slot-games__providers-section {
  padding: 80px 0;
}

.page-casino-slot-games__providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  justify-items: center;
  align-items: center;
  margin-top: 40px;
}

.page-casino-slot-games__provider-logo img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%); /* Grey out logos */
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
  min-width: 200px; /* Ensure min size */
  min- /* Ensure min size, assuming a common logo aspect ratio */
}

.page-casino-slot-games__provider-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.page-casino-slot-games__cta-section {
  background-color: #0056B3;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-casino-slot-games__cta-section--alt {
  background: linear-gradient(135deg, #0056B3, #004080);
}

.page-casino-slot-games__cta-section .page-casino-slot-games__section-title {
  color: #FFD700;
}

.page-casino-slot-games__cta-section .page-casino-slot-games__text-content {
  color: #f0f0f0;
}

.page-casino-slot-games__cta-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-casino-slot-games__faq-section {
  background-color: #f9f9f9;
}

.page-casino-slot-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

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

.page-casino-slot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.page-casino-slot-games__faq-question.active::after {
  content: '-';
}

.page-casino-slot-games__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-casino-slot-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 10px;
}

.page-casino-slot-games__faq-answer a {
  color: #0056B3;
  text-decoration: underline;
}

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

@media (max-width: 768px) {
  .page-casino-slot-games {
    padding-top: var(--header-offset, 120px);
  }
  .page-casino-slot-games__hero-title {
    font-size: 2.2em;
  }
  .page-casino-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-casino-slot-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-casino-slot-games__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-casino-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-casino-slot-games__section-subtitle {
    font-size: 1em;
  }
  .page-casino-slot-games__intro-section,
  .page-casino-slot-games__game-types,
  .page-casino-slot-games__features-section,
  .page-casino-slot-games__providers-section,
  .page-casino-slot-games__cta-section,
  .page-casino-slot-games__faq-section {
    padding: 50px 0;
  }
  .page-casino-slot-games__type-grid,
  .page-casino-slot-games__feature-grid,
  .page-casino-slot-games__providers-grid {
    grid-template-columns: 1fr;
  }
  .page-casino-slot-games__type-image,
  .page-casino-slot-games__feature-icon,
  .page-casino-slot-games__provider-logo img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
  }
  .page-casino-slot-games__container {
    padding: 0 15px;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-casino-slot-games img {
    max-width: 100%;
    height: auto;
  }
}

@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__section-title {
    font-size: 1.5em;
  }
}