/* style/slot-games-guide.css */
.page-slot-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: var(--secondary-color, #FFFFFF); /* Ensure this is light for default text color */
}

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

.page-slot-games-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-slot-games-guide__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-slot-games-guide__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-slot-games-guide__list--bullets li::before {
  content: '•';
  color: #26A9E0;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-slot-games-guide__list--checkmarks li::before {
  content: '✔';
  color: #26A9E0;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-slot-games-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-slot-games-guide__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px);
  min-height: 600px;
  overflow: hidden;
  color: #ffffff;
  background-color: #26A9E0; /* Dark background for hero */
}

.page-slot-games-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 20px;
}

.page-slot-games-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

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

.page-slot-games-guide__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-slot-games-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-slot-games-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly transparent to let background color show */
}

/* Buttons */
.page-slot-games-guide__btn-primary,
.page-slot-games-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-slot-games-guide__btn-primary {
  background-color: #EA7C07;
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-slot-games-guide__btn-primary:hover {
  background-color: #d16b06;
  border-color: #d16b06;
}

.page-slot-games-guide__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-slot-games-guide__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #26A9E0;
}

/* Image with text block */
.page-slot-games-guide__image-text-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-slot-games-guide__image-content {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.page-slot-games-guide__image-text-block .page-slot-games-guide__list {
  flex: 1;
  min-width: 300px;
  padding-left: 0;
}

/* Step Cards */
.page-slot-games-guide__step-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-guide__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #333333;
}

.page-slot-games-guide__step-card .page-slot-games-guide__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-guide__step-card .page-slot-games-guide__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-slot-games-guide__step-card .page-slot-games-guide__card-text {
  font-size: 1em;
  margin-bottom: 20px;
}

.page-slot-games-guide__step-card .page-slot-games-guide__btn-primary,
.page-slot-games-guide__step-card .page-slot-games-guide__btn-secondary {
  width: auto;
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 10px;
}

.page-slot-games-guide__step-card .page-slot-games-guide__btn-primary {
  background-color: #26A9E0;
  border-color: #26A9E0;
}

.page-slot-games-guide__step-card .page-slot-games-guide__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-slot-games-guide__step-card .page-slot-games-guide__btn-secondary {
  color: #26A9E0;
  border-color: #26A9E0;
  background-color: transparent;
}

.page-slot-games-guide__step-card .page-slot-games-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* Terms Section */
.page-slot-games-guide__term-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-slot-games-guide__term-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  color: #333333;
}

.page-slot-games-guide__term-title {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games-guide__term-description {
  font-size: 0.95em;
}

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

.page-slot-games-guide__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
  overflow: hidden;
}

.page-slot-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  list-style: none; /* For details summary */
}

.page-slot-games-guide__faq-question::-webkit-details-marker {
  display: none; /* For details summary */
}

.page-slot-games-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-slot-games-guide__faq-item[open] .page-slot-games-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-guide__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #555555;
}

.page-slot-games-guide__faq-answer p {
  margin-bottom: 10px;
}

.page-slot-games-guide__faq-link {
  color: #26A9E0;
  text-decoration: underline;
}

.page-slot-games-guide__faq-link:hover {
  color: #1e87b7;
}

/* Section Backgrounds */
.page-slot-games-guide__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 60px 0;
}

.page-slot-games-guide__dark-bg .page-slot-games-guide__section-title {
  color: #FFFFFF;
}

.page-slot-games-guide__dark-bg .page-slot-games-guide__text-block {
  color: #f0f0f0;
}

.page-slot-games-guide__light-bg {
  background-color: #FFFFFF;
  color: #333333;
  padding: 60px 0;
}

.page-slot-games-guide__light-bg .page-slot-games-guide__section-title {
  color: #26A9E0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-guide__hero-title {
    font-size: 3em;
  }
  .page-slot-games-guide__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-guide__hero-section {
    padding: 60px 0;
    padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
    min-height: 500px;
  }

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

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

  .page-slot-games-guide__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games-guide__btn-primary,
  .page-slot-games-guide__btn-secondary {
    width: 100% !important; /* Ensure buttons take full width */
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-slot-games-guide__text-block {
    font-size: 1em;
  }

  .page-slot-games-guide__image-text-block {
    flex-direction: column;
  }

  .page-slot-games-guide__image-content,
  .page-slot-games-guide__image-text-block .page-slot-games-guide__list {
    min-width: unset;
  }

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

  /* Ensure all images are responsive and do not overflow */
  .page-slot-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Ensure all containers holding images/content are responsive */
  .page-slot-games-guide__section,
  .page-slot-games-guide__card,
  .page-slot-games-guide__container,
  .page-slot-games-guide__step-card,
  .page-slot-games-guide__term-item,
  .page-slot-games-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Specific padding adjustment for sections */
  .page-slot-games-guide__dark-bg,
  .page-slot-games-guide__light-bg {
    padding: 40px 0;
  }

  /* FAQ items padding adjustment */
  .page-slot-games-guide__faq-question,
  .page-slot-games-guide__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games-guide__hero-title {
    font-size: 1.8em;
  }
  .page-slot-games-guide__section-title {
    font-size: 1.5em;
  }
  .page-slot-games-guide__btn-primary,
  .page-slot-games-guide__btn-secondary {
    font-size: 0.95em;
    padding: 10px 15px;
  }
  .page-slot-games-guide__step-card .page-slot-games-guide__card-title {
    font-size: 1.3em;
  }
}