/* style/slot-games.css */
/* Custom Colors */
:root {
  --page-slot-games-primary-color: #11A84E;
  --page-slot-games-secondary-color: #22C768;
  --page-slot-games-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-slot-games-card-bg: #11271B;
  --page-slot-games-background: #08160F;
  --page-slot-games-text-main: #F2FFF6;
  --page-slot-games-text-secondary: #A7D9B8;
  --page-slot-games-border: #2E7A4E;
  --page-slot-games-glow: #57E38D;
  --page-slot-games-gold: #F2C14E;
  --page-slot-games-divider: #1E3A2A;
  --page-slot-games-deep-green: #0A4B2C;
}

/* Base styles for the page content */
.page-slot-games {
  background-color: var(--page-slot-games-background); /* Dark background from custom colors */
  color: var(--page-slot-games-text-main); /* Light text for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Sections */
.page-slot-games__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games__dark-bg {
  background-color: var(--page-slot-games-background);
  color: var(--page-slot-games-text-main);
}

.page-slot-games__light-bg {
  background-color: var(--page-slot-games-card-bg); /* Use card bg for lighter sections for contrast with main background */
  color: var(--page-slot-games-text-main);
}

.page-slot-games__section-title {
  font-size: clamp(2em, 4vw, 2.8em); /* Responsive H2 font size */
  margin-bottom: 20px;
  color: var(--page-slot-games-gold);
  font-weight: bold;
}

.page-slot-games__section-title--dark {
  color: var(--page-slot-games-text-main);
}

.page-slot-games__section-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__section-text--dark {
  color: var(--page-slot-games-text-main);
}

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

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 10px 20px 60px 20px; /* Minimal top padding */
  overflow: hidden;
  box-sizing: border-box;
  background-color: var(--page-slot-games-background);
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of the image wrapper */
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly dim the image to make text pop */
  min-height: 200px; /* Ensure minimum size */
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over the image slightly for better visual flow */
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for readability */
  border-radius: 10px;
}

.page-slot-games__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* H1 responsive font size */
  color: var(--page-slot-games-gold);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: 1.2em;
  color: var(--page-slot-games-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons adapt to container */
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__btn-primary {
  background: var(--page-slot-games-button-gradient);
  color: #ffffff; /* White text for button gradient */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-slot-games__btn-secondary {
  background: transparent;
  color: var(--page-slot-games-text-main);
  border: 2px solid var(--page-slot-games-primary-color);
}

.page-slot-games__btn-secondary:hover {
  background: rgba(var(--page-slot-games-primary-color), 0.1);
  color: var(--page-slot-games-primary-color);
}

.page-slot-games__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Image styles */
.page-slot-games__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  min-width: 200px; /* Minimum image width */
  min-height: 200px; /* Minimum image height */
}

.page-slot-games__image--center {
  margin-left: auto;
  margin-right: auto;
}

/* Lists */
.page-slot-games__list,
.page-slot-games__bullet-list,
.page-slot-games__numbered-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-slot-games__list-item {
  background-color: var(--page-slot-games-card-bg);
  border: 1px solid var(--page-slot-games-border);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  color: var(--page-slot-games-text-main);
}

.page-slot-games__list-item--dark {
  background-color: var(--page-slot-games-card-bg);
  color: var(--page-slot-games-text-main);
}

.page-slot-games__list-title {
  font-size: 1.4em;
  color: var(--page-slot-games-gold);
  margin-bottom: 10px;
}

.page-slot-games__list-title--dark {
  color: var(--page-slot-games-text-main);
}

.page-slot-games__list-description {
  font-size: 1em;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__list-description--dark {
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__bullet-list .page-slot-games__list-item {
  position: relative;
  padding-left: 30px;
  background: none;
  border: none;
  text-align: left;
}

.page-slot-games__bullet-list .page-slot-games__list-item::before {
  content: '•';
  color: var(--page-slot-games-gold);
  position: absolute;
  left: 0;
  font-size: 1.5em;
  line-height: 1;
}

.page-slot-games__numbered-list {
  counter-reset: item;
}

.page-slot-games__numbered-list .page-slot-games__list-item {
  position: relative;
  padding-left: 40px;
}

.page-slot-games__numbered-list .page-slot-games__list-item::before {
  content: counter(item) ".";
  counter-increment: item;
  color: var(--page-slot-games-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

/* Features Grid (Why Choose section) */
.page-slot-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__card {
  background-color: var(--page-slot-games-card-bg);
  color: var(--page-slot-games-text-main);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--page-slot-games-border);
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
}

.page-slot-games__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-games__card-title {
  font-size: 1.3em;
  color: var(--page-slot-games-gold);
  margin-bottom: 10px;
}

.page-slot-games__card-text {
  font-size: 0.95em;
  color: var(--page-slot-games-text-secondary);
}

.page-slot-games__text-link {
  color: var(--page-slot-games-primary-color);
  text-decoration: underline;
}

.page-slot-games__text-link:hover {
  color: var(--page-slot-games-secondary-color);
}

/* FAQ Section */
.page-slot-games__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-slot-games__faq-item {
  background-color: var(--page-slot-games-card-bg);
  border: 1px solid var(--page-slot-games-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15em;
  color: var(--page-slot-games-gold);
  user-select: none; /* Prevent text selection on click */
  list-style: none; /* Hide default marker for details/summary */
}

.page-slot-games__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games__faq-qtext--dark {
  color: var(--page-slot-games-text-main);
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--page-slot-games-primary-color);
}

.page-slot-games__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: var(--page-slot-games-text-secondary);
  line-height: 1.6;
}

.page-slot-games__faq-answer--dark {
  color: var(--page-slot-games-text-secondary);
}

/* Call to Action Section */
.page-slot-games__call-to-action {
  padding: 80px 0;
  background-image: linear-gradient(rgba(17, 168, 78, 0.8), rgba(19, 153, 74, 0.8)), url('[GALLERY:bg:1920x1080:188bey_web,slot_games,background,abstract_green_gold]');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.page-slot-games__call-to-action .page-slot-games__section-title {
  color: #ffffff;
}

.page-slot-games__call-to-action .page-slot-games__section-text {
  color: #ffffff;
  margin-bottom: 40px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: 10px !important;
    min-height: 450px;
  }

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

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

  .page-slot-games__hero-description {
    font-size: 1em;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .page-slot-games__container {
    padding: 0 15px;
  }

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

  .page-slot-games__section-text {
    font-size: 1em;
  }

  .page-slot-games__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games__list-item,
  .page-slot-games__card {
    padding: 15px;
  }

  .page-slot-games__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__features-grid {
    grid-template-columns: 1fr;
  }

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

  .page-slot-games__faq-answer {
    padding: 0 15px 15px;
  }

  /* Containers for images, buttons, videos */
  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__hero-image-wrapper,
  .page-slot-games__cta-buttons,
  .page-slot-games__features-grid,
  .page-slot-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__hero-title {
    font-size: 1.8em;
  }

  .page-slot-games__section-title {
    font-size: 1.6em;
  }
}