/* style/slot-games-guide.css */

/* Base styles */
.page-slot-games-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light background */
  background-color: #FFFFFF;
}

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

.page-slot-games-guide__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-slot-games-guide__dark-bg {
  background-color: #26A9E0; /* Main brand color */
  color: #FFFFFF;
}

.page-slot-games-guide__section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 25px;
  font-weight: 700;
  color: inherit; /* Inherits from section background */
  line-height: 1.2;
}

.page-slot-games-guide__sub-title {
  font-size: clamp(22px, 3vw, 30px);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  color: inherit;
}

.page-slot-games-guide__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-guide__list {
  list-style-type: disc;
  text-align: left;
  max-width: 900px;
  margin: 20px auto;
  padding-left: 20px;
}

.page-slot-games-guide__ordered-list {
  list-style-type: decimal;
}

.page-slot-games-guide__list-item {
  margin-bottom: 10px;
  font-size: 17px;
}

/* Hero Section */
.page-slot-games-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-slot-games-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-slot-games-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-slot-games-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-slot-games-guide__main-title {
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #000000;
  line-height: 1.1;
}

.page-slot-games-guide__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 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: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-guide__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
  margin-top: 20px;
}

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

.page-slot-games-guide__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-top: 20px;
}

.page-slot-games-guide__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #1a7fb8;
}

/* Image Containers */
.page-slot-games-guide__image-container {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-slot-games-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.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);
  overflow: hidden;
}

.page-slot-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  background-color: #F8F8F8;
  border-bottom: 1px solid #E0E0E0;
  transition: background-color 0.3s ease;
  list-style: none;
  user-select: none; /* Prevent text selection on summary */
}

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

.page-slot-games-guide__faq-question:hover {
  background-color: #EFEFEF;
}

.page-slot-games-guide__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-slot-games-guide__faq-item[open] .page-slot-games-guide__faq-question {
  background-color: #EFEFEF;
  border-bottom: none;
}

.page-slot-games-guide__faq-item[open] .page-slot-games-guide__faq-toggle {
  content: '−';
}

.page-slot-games-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 16px;
  color: #333333;
  background-color: #FFFFFF;
  border-top: 1px solid #E0E0E0; /* Consistent with summary bottom border */
}

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

/* Responsive styles */
@media (max-width: 768px) {
  .page-slot-games-guide__section {
    padding: 40px 0;
  }

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

  .page-slot-games-guide__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-slot-games-guide__sub-title {
    font-size: 22px;
    margin-top: 25px;
  }

  .page-slot-games-guide__text-block,
  .page-slot-games-guide__list-item {
    font-size: 16px;
  }

  .page-slot-games-guide__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games-guide__main-title {
    font-size: 32px;
  }

  .page-slot-games-guide__hero-description {
    font-size: 17px;
  }

  .page-slot-games-guide__hero-image-wrapper {
    max-height: 400px;
  }

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

  /* Ensure all containers with images are responsive */
  .page-slot-games-guide__section,
  .page-slot-games-guide__card,
  .page-slot-games-guide__container,
  .page-slot-games-guide__image-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  /* Buttons responsive */
  .page-slot-games-guide__btn-primary,
  .page-slot-games-guide__btn-secondary,
  .page-slot-games-guide a[class*="button"],
  .page-slot-games-guide 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;
    margin-left: 0;
    margin-right: 0;
  }

  .page-slot-games-guide__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }

  .page-slot-games-guide__faq-answer {
    padding: 10px 20px 15px;
    font-size: 15px;
  }

  .page-slot-games-guide__faq-toggle {
    font-size: 20px;
  }
}