.page-slot-game-strategies {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --dark-text: #333333;
  --light-text: #ffffff;
  --background-light: #ffffff;
  --background-dark: #0d0d0d; /* Assuming dark-bg from shared.css is a dark color */
  --accent-color-login: #EA7C07;

  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-slot-game-strategies__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  color: var(--light-text);
  background: var(--primary-color);
  overflow: hidden;
}

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

.page-slot-game-strategies__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-slot-game-strategies__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-game-strategies__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--light-text);
}

.page-slot-game-strategies__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--light-text);
}

.page-slot-game-strategies__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-game-strategies__btn-primary,
.page-slot-game-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.page-slot-game-strategies__btn-primary {
  background: var(--accent-color-login);
  color: var(--light-text);
  border: 2px solid var(--accent-color-login);
}

.page-slot-game-strategies__btn-primary:hover {
  background: darken(var(--accent-color-login), 10%);
  border-color: darken(var(--accent-color-login), 10%);
}

.page-slot-game-strategies__btn-secondary {
  background: transparent;
  color: var(--light-text);
  border: 2px solid var(--light-text);
}

.page-slot-game-strategies__btn-secondary:hover {
  background: var(--light-text);
  color: var(--primary-color);
}

.page-slot-game-strategies__content-section {
  padding: 60px 20px;
}

.page-slot-game-strategies__dark-bg {
  background: var(--background-dark);
  color: var(--light-text);
}

.page-slot-game-strategies__light-bg {
  background: var(--background-light);
  color: var(--dark-text);
}

.page-slot-game-strategies__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-slot-game-strategies__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: inherit; /* Inherit color from section for contrast */
}

.page-slot-game-strategies__intro-paragraph {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.page-slot-game-strategies__sub-title {
  font-size: 1.8em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit;
}

.page-slot-game-strategies__text-block {
  margin-bottom: 30px;
}

.page-slot-game-strategies__text-block p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: inherit;
}

.page-slot-game-strategies__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: inherit;
}

.page-slot-game-strategies__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: inherit;
}

.page-slot-game-strategies__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-slot-game-strategies__faq-section {
  padding: 60px 20px;
  background: var(--background-dark);
  color: var(--light-text);
}

.page-slot-game-strategies__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-slot-game-strategies__faq-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--light-text);
}

.page-slot-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-text);
  list-style: none; /* For details/summary */
}

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

.page-slot-game-strategies__faq-question:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

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

.page-slot-game-strategies__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--light-text);
}

.page-slot-game-strategies__faq-answer p {
  margin: 0;
  color: inherit;
}

.page-slot-game-strategies__cta-section {
  padding: 80px 20px;
  text-align: center;
  background: var(--background-light);
  color: var(--dark-text);
}

.page-slot-game-strategies__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-slot-game-strategies__hero-title {
    font-size: 2.8em;
  }
  .page-slot-game-strategies__section-title {
    font-size: 2.2em;
  }
  .page-slot-game-strategies__sub-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-slot-game-strategies__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-slot-game-strategies__hero-title {
    font-size: 2.2em;
  }
  .page-slot-game-strategies__hero-description {
    font-size: 1em;
  }
  .page-slot-game-strategies__hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .page-slot-game-strategies__btn-primary,
  .page-slot-game-strategies__btn-secondary {
    width: 100% !important;
    max-width: 300px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-game-strategies__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-game-strategies__content-section,
  .page-slot-game-strategies__faq-section,
  .page-slot-game-strategies__cta-section {
    padding: 40px 15px;
  }
  .page-slot-game-strategies__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slot-game-strategies__sub-title {
    font-size: 1.4em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-slot-game-strategies__image-inline {
    max-width: 100% !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
  }
  .page-slot-game-strategies__text-block,
  .page-slot-game-strategies__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-slot-game-strategies__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-slot-game-strategies__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-slot-game-strategies__hero-title {
    font-size: 1.8em;
  }
  .page-slot-game-strategies__section-title {
    font-size: 1.6em;
  }
  .page-slot-game-strategies__sub-title {
    font-size: 1.2em;
  }
  .page-slot-game-strategies__list {
    margin-left: 20px;
  }
}