/* style/casino-slot-games-showcase.css */
.page-casino-slot-games-showcase {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

.page-casino-slot-games-showcase__dark-bg {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-casino-slot-games-showcase__light-bg {
  background-color: #ffffff; /* Auxiliary color for light sections */
  color: #333333;
}

.page-casino-slot-games-showcase__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
  font-weight: bold;
}

.page-casino-slot-games-showcase__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: inherit;
}

.page-casino-slot-games-showcase__inline-link {
  color: #FFFF00; /* Yellow for links on dark background */
  text-decoration: underline;
  font-weight: bold;
}

.page-casino-slot-games-showcase__inline-link--disabled {
  color: #ccc; /* Lighter color for disabled/placeholder links */
  text-decoration: none;
  cursor: default;
}

/* Hero Section */
.page-casino-slot-games-showcase__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-casino-slot-games-showcase__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-casino-slot-games-showcase__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-casino-slot-games-showcase__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-casino-slot-games-showcase__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-casino-slot-games-showcase__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-casino-slot-games-showcase__btn-register {
  background-color: #C30808; /* Custom Register color */
  color: #FFFF00; /* Custom Register text color */
  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;
  border: none;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino-slot-games-showcase__btn-register:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-casino-slot-games-showcase__btn-login {
  background-color: #C30808; /* Custom Login color */
  color: #FFFF00; /* Custom Login text color */
  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;
  border: none;
  cursor: pointer;
  display: inline-block;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino-slot-games-showcase__btn-login:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

/* Introduction Section */
.page-casino-slot-games-showcase__introduction-section {
  padding: 60px 0;
}

/* Types Section */
.page-casino-slot-games-showcase__types-section {
  padding: 60px 0;
}

.page-casino-slot-games-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-slot-games-showcase__card {
  background: rgba(255, 255, 255, 0.1); /* Light background on dark section */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-casino-slot-games-showcase__card:hover {
  transform: translateY(-5px);
}

.page-casino-slot-games-showcase__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-casino-slot-games-showcase__card-title {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #FFFF00;
}

.page-casino-slot-games-showcase__card-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Providers Section */
.page-casino-slot-games-showcase__providers-section {
  padding: 60px 0;
}

.page-casino-slot-games-showcase__providers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-casino-slot-games-showcase__provider-item {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333;
}

.page-casino-slot-games-showcase__provider-item:hover {
  transform: translateY(-5px);
}

.page-casino-slot-games-showcase__provider-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-casino-slot-games-showcase__provider-name {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #017439;
}

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

/* How-To-Play Section */
.page-casino-slot-games-showcase__how-to-play-section {
  padding: 60px 0;
}

.page-casino-slot-games-showcase__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-casino-slot-games-showcase__step-item {
  background: rgba(255, 255, 255, 0.1); /* Light background on dark section */
  border-left: 5px solid #FFFF00;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-casino-slot-games-showcase__step-title {
  font-size: 1.6em;
  color: #FFFF00;
  margin-bottom: 10px;
}

.page-casino-slot-games-showcase__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Promotions Section */
.page-casino-slot-games-showcase__promotions-section {
  padding: 60px 0;
}

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

.page-casino-slot-games-showcase__promo-card {
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  color: #333333;
  text-align: center;
}

.page-casino-slot-games-showcase__promo-card:hover {
  transform: translateY(-5px);
}

.page-casino-slot-games-showcase__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-casino-slot-games-showcase__promo-title {
  font-size: 1.5em;
  margin: 15px 10px 10px;
  color: #017439;
}

.page-casino-slot-games-showcase__promo-description {
  font-size: 0.95em;
  padding: 0 15px 20px;
  color: #555555;
}

.page-casino-slot-games-showcase__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border: 2px solid #017439;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  margin-bottom: 20px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino-slot-games-showcase__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

/* FAQ Section */
.page-casino-slot-games-showcase__faq-section {
  padding: 60px 0;
}

.page-casino-slot-games-showcase__faq-list {
  margin-top: 40px;
}

.page-casino-slot-games-showcase__faq-item {
  background: rgba(255, 255, 255, 0.1); /* Light background on dark section */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-casino-slot-games-showcase__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  list-style: none; /* Remove default marker for details summary */
}

.page-casino-slot-games-showcase__faq-question::-webkit-details-marker {
  display: none;
}

.page-casino-slot-games-showcase__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-casino-slot-games-showcase__faq-qtext {
  flex-grow: 1;
  color: #FFFF00;
}

.page-casino-slot-games-showcase__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #FFFF00;
}

.page-casino-slot-games-showcase__faq-answer {
  padding: 15px 20px;
  font-size: 1em;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* CTA Section */
.page-casino-slot-games-showcase__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-casino-slot-games-showcase__cta-content {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 40px;
}

.page-casino-slot-games-showcase__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Global Image/Video/Button Responsive Styles */
.page-casino-slot-games-showcase img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-casino-slot-games-showcase video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-casino-slot-games-showcase__cta-button,
.page-casino-slot-games-showcase__btn-primary,
.page-casino-slot-games-showcase__btn-secondary,
.page-casino-slot-games-showcase a[class*="button"],
.page-casino-slot-games-showcase a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-casino-slot-games-showcase__cta-buttons,
.page-casino-slot-games-showcase__button-group,
.page-casino-slot-games-showcase__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-casino-slot-games-showcase {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-casino-slot-games-showcase__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }

  .page-casino-slot-games-showcase__hero-title {
    font-size: 2.2em;
  }

  .page-casino-slot-games-showcase__hero-description {
    font-size: 1em;
  }

  .page-casino-slot-games-showcase__hero-buttons,
  .page-casino-slot-games-showcase__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-casino-slot-games-showcase__btn-register,
  .page-casino-slot-games-showcase__btn-login,
  .page-casino-slot-games-showcase__btn-secondary,
  .page-casino-slot-games-showcase a[class*="button"],
  .page-casino-slot-games-showcase a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-casino-slot-games-showcase__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-casino-slot-games-showcase__grid,
  .page-casino-slot-games-showcase__providers-list,
  .page-casino-slot-games-showcase__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-casino-slot-games-showcase__card,
  .page-casino-slot-games-showcase__provider-item,
  .page-casino-slot-games-showcase__promo-card {
    padding: 20px;
  }

  .page-casino-slot-games-showcase__card-image,
  .page-casino-slot-games-showcase__promo-image {
    height: 180px;
  }

  .page-casino-slot-games-showcase img,
  .page-casino-slot-games-showcase video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-casino-slot-games-showcase__section,
  .page-casino-slot-games-showcase__card,
  .page-casino-slot-games-showcase__container,
  .page-casino-slot-games-showcase__video-section,
  .page-casino-slot-games-showcase__video-container,
  .page-casino-slot-games-showcase__video-wrapper,
  .page-casino-slot-games-showcase__cta-buttons,
  .page-casino-slot-games-showcase__button-group,
  .page-casino-slot-games-showcase__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-casino-slot-games-showcase__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-casino-slot-games-showcase__faq-answer {
    padding: 10px 15px;
  }
}