/* style/game-guides-slot-games-guide.css */
.page-game-guides-slot-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: var(--background-color, #08160F); /* Fallback if shared.css not loaded */
}

.page-game-guides-slot-games-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

.page-game-guides-slot-games-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  min-height: 400px; /* Ensure a minimum height for hero image */
}

.page-game-guides-slot-games-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.7); /* Card B G with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  margin-top: 200px; /* Push content down from top edge of hero */
}

.page-game-guides-slot-games-guide__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-guides-slot-games-guide__hero-description {
  font-size: clamp(1em, 2vw, 1.2em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
}

.page-game-guides-slot-games-guide__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-slot-games-guide__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-game-guides-slot-games-guide__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-game-guides-slot-games-guide__section:last-of-type {
  border-bottom: none;
}

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

.page-game-guides-slot-games-guide__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-game-guides-slot-games-guide__sub-title {
  font-size: 1.8em;
  color: #57E38D; /* Glow */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #2AD16F;
  padding-left: 15px;
}

.page-game-guides-slot-games-guide__text-block {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-game-guides-slot-games-guide__list-item {
  background-color: #11271B; /* Card B G */
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 8px;
  color: #F2FFF6; /* Text Main */
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-game-guides-slot-games-guide__list-item::before {
  content: '✔';
  color: #2AD16F;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-game-guides-slot-games-guide__ordered-list {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-game-guides-slot-games-guide__ordered-list .page-game-guides-slot-games-guide__list-item {
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-game-guides-slot-games-guide__ordered-list .page-game-guides-slot-games-guide__list-item::before {
  content: none;
}

.page-game-guides-slot-games-guide__list-highlight {
  color: #F2C14E; /* Gold */
  font-weight: bold;
}

.page-game-guides-slot-games-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page-game-guides-slot-games-guide__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #0A4B2C; /* Deep Green */
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.page-game-guides-slot-games-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.page-game-guides-slot-games-guide__video-caption {
  text-align: center;
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-top: 10px;
}

.page-game-guides-slot-games-guide__faq-list {
  margin-top: 30px;
}

.page-game-guides-slot-games-guide__faq-item {
  background-color: #11271B; /* Card B G */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-game-guides-slot-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #2E7A4E;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-game-guides-slot-games-guide__faq-question:hover {
  background-color: #13994A;
}

.page-game-guides-slot-games-guide__faq-item[open] .page-game-guides-slot-games-guide__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-game-guides-slot-games-guide__faq-qtext {
  flex-grow: 1;
  font-size: 1.1em;
}

.page-game-guides-slot-games-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

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

.page-game-guides-slot-games-guide__faq-answer {
  padding: 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  background-color: #11271B;
}

/* Hide default details arrow */
.page-game-guides-slot-games-guide__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-game-guides-slot-games-guide__faq-item summary {
  list-style: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-game-guides-slot-games-guide {
    font-size: 15px;
  }

  .page-game-guides-slot-games-guide__hero-content {
    padding: 20px;
    margin-top: 100px; /* Adjust margin for smaller screens */
  }

  .page-game-guides-slot-games-guide__main-title {
    font-size: 2.2em;
  }

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

  .page-game-guides-slot-games-guide__section {
    padding: 40px 0;
  }

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

  .page-game-guides-slot-games-guide__section-title {
    font-size: 2em;
  }

  .page-game-guides-slot-games-guide__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
  }

  .page-game-guides-slot-games-guide__text-block {
    font-size: 0.95em;
  }

  /* Image responsive */
  .page-game-guides-slot-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-guides-slot-games-guide__hero-image {
    min-height: 250px; /* Adjust min height for mobile hero */
  }

  /* Video responsive */
  .page-game-guides-slot-games-guide video,
  .page-game-guides-slot-games-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-game-guides-slot-games-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 0px;
    overflow: hidden !important;
  }

  .page-game-guides-slot-games-guide__video-caption {
    padding: 0 15px;
  }

  /* Button responsive */
  .page-game-guides-slot-games-guide__btn-primary,
  .page-game-guides-slot-games-guide__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
    font-size: 1em;
  }

  .page-game-guides-slot-games-guide__cta-buttons,
  .page-game-guides-slot-games-guide__button-group,
  .page-game-guides-slot-games-guide__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-game-guides-slot-games-guide__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-game-guides-slot-games-guide__faq-answer {
    padding: 15px 20px;
  }
}