.page-slot-games-tutorials {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default for light background */
  background-color: #08160F; /* Overall background from palette */
}

.page-slot-games-tutorials__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-slot-games-tutorials__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #08160F;
}

.page-slot-games-tutorials__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 500px; /* Limit height for hero image */
}

.page-slot-games-tutorials__hero-content {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  background: rgba(17, 40, 27, 0.9); /* Card BG with transparency */
  padding: 20px;
  border-radius: 8px;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-tutorials__hero-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.2;
}

.page-slot-games-tutorials__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-slot-games-tutorials__section-title {
  font-size: clamp(1.8em, 2.5vw, 2.5em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-slot-games-tutorials__sub-title {
  font-size: clamp(1.4em, 2vw, 2em);
  color: #2AD16F; /* Brighter green for sub-titles */
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-games-tutorials__text-block {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #F2FFF6; /* Text Main for dark sections */
}

.page-slot-games-tutorials__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main for dark sections */
}

.page-slot-games-tutorials__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-slot-games-tutorials__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-slot-games-tutorials__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

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

.page-slot-games-tutorials__cta-button--secondary {
  background: #ffffff;
  color: #11A84E;
  border: 2px solid #11A84E;
  margin-left: 15px;
}

.page-slot-games-tutorials__cta-button--secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.page-slot-games-tutorials__cta-button--small {
  padding: 8px 15px;
  font-size: 0.9em;
  margin-top: 10px;
  margin-right: 10px;
}

.page-slot-games-tutorials__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}

.page-slot-games-tutorials__introduction-section,
.page-slot-games-tutorials__features-section,
.page-slot-games-tutorials__types-section,
.page-slot-games-tutorials__conclusion-section {
  background-color: #08160F;
  padding: 60px 0;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games-tutorials__basics-section,
.page-slot-games-tutorials__strategy-section,
.page-slot-games-tutorials__faq-section {
  background-color: #11271B; /* Card BG */
  padding: 60px 0;
  color: #F2FFF6; /* Text Main */
}

/* Image styles */
.page-slot-games-tutorials__image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* FAQ styles */
.page-slot-games-tutorials__faq-list {
  margin-top: 30px;
}

.page-slot-games-tutorials__faq-item {
  background-color: #08160F; /* Background for FAQ item */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games-tutorials__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.15em;
  color: #F2C14E; /* Gold */
  background-color: #11271B; /* Card BG */
  user-select: none;
}

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

.page-slot-games-tutorials__faq-question::marker {
  display: none;
}

.page-slot-games-tutorials__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

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

.page-slot-games-tutorials__faq-answer {
  padding: 15px 20px;
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #2E7A4E;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-tutorials__hero-content {
    width: 95%;
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .page-slot-games-tutorials__hero-image {
    max-height: 350px;
  }

  .page-slot-games-tutorials__hero-content {
    position: static;
    transform: none;
    width: auto;
    margin: 20px 15px;
    padding: 15px;
    background: #11271B; /* Card BG */
  }

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

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

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

  .page-slot-games-tutorials__sub-title {
    font-size: 1.3em;
  }

  .page-slot-games-tutorials__text-block,
  .page-slot-games-tutorials__list-item,
  .page-slot-games-tutorials__faq-answer {
    font-size: 0.95em;
  }

  .page-slot-games-tutorials__cta-button {
    width: 100% !important;
    margin-left: 0 !important;
    margin-bottom: 10px;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-tutorials__cta-buttons {
    flex-direction: column;
    align-items: center;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

  .page-slot-games-tutorials__introduction-section,
  .page-slot-games-tutorials__basics-section,
  .page-slot-games-tutorials__features-section,
  .page-slot-games-tutorials__strategy-section,
  .page-slot-games-tutorials__types-section,
  .page-slot-games-tutorials__faq-section,
  .page-slot-games-tutorials__conclusion-section {
    padding: 30px 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-slot-games-tutorials__hero-section {
    padding-top: 10px !important;
  }
}

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

  .page-slot-games-tutorials__hero-description {
    font-size: 0.9em;
  }

  .page-slot-games-tutorials__section-title {
    font-size: 1.5em;
  }

  .page-slot-games-tutorials__sub-title {
    font-size: 1.1em;
  }

  .page-slot-games-tutorials__cta-button {
    padding: 10px 15px;
  }
}

/* Color Contrast Adjustments */
/* Default text color for dark backgrounds */
.page-slot-games-tutorials__dark-bg .page-slot-games-tutorials__text-block,
.page-slot-games-tutorials__dark-bg .page-slot-games-tutorials__list-item,
.page-slot-games-tutorials__dark-bg .page-slot-games-tutorials__faq-answer {
  color: #F2FFF6; /* Text Main */
}

/* Default text color for light backgrounds */
.page-slot-games-tutorials__light-bg .page-slot-games-tutorials__text-block,
.page-slot-games-tutorials__light-bg .page-slot-games-tutorials__list-item,
.page-slot-games-tutorials__light-bg .page-slot-games-tutorials__faq-answer {
  color: #A7D9B8; /* Text Secondary, slightly darker for better contrast on light green */
}

/* Ensure image filters are not used */
.page-slot-games-tutorials img {
  filter: none; /* Explicitly disable any filters */
}