/* style/slot-games.css */
.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f8f9fa; /* Inherited from body, but explicitly set for clarity */
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Light text for dark background */
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  margin-top: -100px; /* Overlap slightly with image */
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-slot-games__main-title {
  font-size: clamp(1.8em, 4vw, 2.8em); /* Responsive font size */
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-slot-games__tagline {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  border: 2px solid #57E38D; /* Glow */
  box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4);
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(87, 227, 141, 0.6);
  transform: translateY(-2px);
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #A7D9B8; /* Text Secondary */
}

.page-slot-games__btn-secondary:hover {
  background-color: rgba(167, 217, 184, 0.1);
  border-color: #F2FFF6;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-slot-games__section {
  padding: 60px 0;
  background-color: #f8f9fa; /* Default light background for content sections */
  color: #333333; /* Dark text for light background */
}

.page-slot-games__introduction-section,
.page-slot-games__guide-section,
.page-slot-games__strategy-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section {
  background-color: #f8f9fa; /* Light background */
  color: #333333; /* Dark text */
}

.page-slot-games__game-types-section,
.page-slot-games__benefits-section,
.page-slot-games__providers-section,
.page-slot-games__cta-final-section {
  background-color: #08160F; /* Dark background */
  color: #F2FFF6; /* Light text */
}

.page-slot-games__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #11A84E; /* Brand primary color */
  text-shadow: 0 0 5px rgba(17, 168, 78, 0.3);
}

.page-slot-games__game-types-section .page-slot-games__section-title,
.page-slot-games__benefits-section .page-slot-games__section-title,
.page-slot-games__providers-section .page-slot-games__section-title,
.page-slot-games__cta-final-section .page-slot-games__section-title {
  color: #F2FFF6; /* Light text for dark background sections */
}

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

.page-slot-games__text-block {
  font-size: 1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games__text-block strong {
  color: #11A84E; /* Highlight keywords */
}

/* Image in content */
.page-slot-games__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* Card Grid */
.page-slot-games__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__card {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding-bottom: 20px;
  border: 1px solid #2E7A4E;
}

.page-slot-games__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency, object-fit will crop */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin: 0 20px 10px;
  text-align: center;
}

.page-slot-games__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin: 0 20px;
  text-align: justify;
}

/* Feature List (Benefits Section) */
.page-slot-games__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games__feature-list .page-slot-games__list-item {
  text-align: center;
  background-color: #11271B; /* Card BG */
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__list-icon {
  width: 200px; /* Min size requirement for all images */
  height: 200px; /* Min size requirement for all images */
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.page-slot-games__list-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-slot-games__list-description {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
}

/* Step List (Guide Section) */
.page-slot-games__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-slot-games__step-list .page-slot-games__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.page-slot-games__step-list .page-slot-games__list-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #11A84E; /* Primary color */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.2em;
  flex-shrink: 0;
  margin-right: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-slot-games__step-list .page-slot-games__list-title {
  font-size: 1.2em;
  font-weight: bold;
  color: #11A84E; /* Primary color */
  margin-bottom: 5px;
}

.page-slot-games__step-list .page-slot-games__list-description {
  font-size: 0.95em;
  color: #333333; /* Dark text */
}

.page-slot-games__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #F2FFF6; /* Light background for contrast */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #2E7A4E;
}

.page-slot-games__cta-block .page-slot-games__text-block {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #333333;
}

/* Bullet List (Strategy Section) */
.page-slot-games__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-slot-games__bullet-list .page-slot-games__list-item {
  background-color: #11271B; /* Card BG */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #11A84E; /* Primary color highlight */
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__bullet-list .page-slot-games__list-item strong {
  color: #F2FFF6; /* Text Main */
  display: block;
  margin-bottom: 5px;
  font-size: 1.1em;
}

/* Provider Logos */
.page-slot-games__provider-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__provider-logo {
  width: 200px; /* Min size requirement for all images */
  height: 200px; /* Min size requirement for all images */
  object-fit: contain;
  filter: grayscale(100%) brightness(150%); /* Make logos blend in with dark background */
  transition: filter 0.3s ease;
}

.page-slot-games__provider-logo:hover {
  filter: grayscale(0%) brightness(100%);
}

/* Promo List (Promotions Section) */
.page-slot-games__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-slot-games__promo-list .page-slot-games__list-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
  color: #F2FFF6; /* Text Main */
  text-align: center;
}

.page-slot-games__promo-list .page-slot-games__list-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #57E38D; /* Glow */
  margin-bottom: 10px;
}

.page-slot-games__promo-list .page-slot-games__list-description {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
}

.page-slot-games__faq-item {
  background-color: #F2FFF6; /* Light background for contrast */
  color: #333333; /* Dark text */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  background-color: #ffffff; /* White background for question */
  color: #11A84E; /* Primary color for question text */
  transition: background-color 0.3s ease;
}

.page-slot-games__faq-question:hover {
  background-color: #f0f0f0;
}

.page-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #11A84E;
}

.page-slot-games__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95em;
  color: #333333; /* Dark text for answer */
  text-align: justify;
}

.page-slot-games__faq-answer p {
  margin: 0;
}

/* Hide default details marker */
.page-slot-games__faq-item summary {
  list-style: none;
}
.page-slot-games__faq-item summary::-webkit-details-marker {
  display: none;
}

/* Final CTA Section */
.page-slot-games__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__cta-final-content {
  max-width: 900px;
}

.page-slot-games__cta-final-section .page-slot-games__section-title {
  color: #F2FFF6; /* Text Main */
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-slot-games__cta-final-section .page-slot-games__text-block {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-games__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-bottom: 40px;
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-slot-games__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-slot-games__main-title {
    font-size: clamp(1.5em, 7vw, 2.2em);
  }

  .page-slot-games__tagline {
    font-size: clamp(0.9em, 2.5vw, 1.1em);
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-slot-games__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 30px;
  }

  .page-slot-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure container itself doesn't overflow */
  }

  .page-slot-games__text-block {
    font-size: 0.95em;
  }

  /* Images responsiveness */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
    min-width: 200px !important; /* Ensure min size */
    min-height: 200px !important; /* Ensure min size */
  }
  .page-slot-games__image-inline,
  .page-slot-games__card-image {
    height: auto !important; /* Allow auto height on mobile for better aspect ratio */
  }

  .page-slot-games__list-icon,
  .page-slot-games__provider-logo {
    width: 200px !important; /* Still 200px, but centered */
    height: 200px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .page-slot-games__card-grid,
  .page-slot-games__feature-list,
  .page-slot-games__promo-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games__step-list .page-slot-games__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-slot-games__step-list .page-slot-games__list-item::before {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-slot-games__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-slot-games__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }
}

/* Ensure content images are not shrunk below 200px by any selector */
.page-slot-games img {
    min-width: 200px;
    min-height: 200px;
}