.page-slot-game-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-slot-game-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
}

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

.page-slot-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text contrast */
}

.page-slot-game-strategy__hero-content-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-slot-game-strategy__hero-content {
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  padding: 30px;
  border-radius: 10px;
}

.page-slot-game-strategy__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-slot-game-strategy__lead-text {
  font-size: clamp(1em, 2vw, 1.2em);
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-slot-game-strategy__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-slot-game-strategy__btn-primary,
.page-slot-game-strategy__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-slot-game-strategy__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-slot-game-strategy__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4); /* Glow */
}

.page-slot-game-strategy__btn-secondary {
  background: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  border: 2px solid #2E7A4E; /* Border */
}

.page-slot-game-strategy__btn-secondary:hover {
  background: #22C768; /* Auxiliary Color */
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(34, 199, 104, 0.4);
}

.page-slot-game-strategy__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-game-strategy__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  border-radius: 2px;
}

.page-slot-game-strategy__paragraph {
  font-size: 1.05em;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-game-strategy__introduction-section,
.page-slot-game-strategy__basics-section,
.page-slot-game-strategy__advanced-tips-section,
.page-slot-game-strategy__faq-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-slot-game-strategy__strategy-section,
.page-slot-game-strategy__platform-advantages-section,
.page-slot-game-strategy__conclusion-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

.page-slot-game-strategy__sub-title {
  font-size: clamp(1.4em, 2.5vw, 1.8em);
  color: #F2FFF6;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-slot-game-strategy__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .page-slot-game-strategy__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-slot-game-strategy__content-grid--reverse .page-slot-game-strategy__text-block:first-child {
    order: 2;
  }
  .page-slot-game-strategy__content-grid--reverse .page-slot-game-strategy__text-block:last-child {
    order: 1;
  }
}

.page-slot-game-strategy__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-slot-game-strategy__list {
  list-style: none;
  padding-left: 0;
}

.page-slot-game-strategy__list-item {
  color: #A7D9B8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-slot-game-strategy__list-item::before {
  content: '✓';
  color: #2AD16F; /* Button top color */
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-slot-game-strategy__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-game-strategy__card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-slot-game-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(87, 227, 141, 0.3); /* Glow */
}

.page-slot-game-strategy__card-title {
  font-size: 1.5em;
  color: #F2FFF6;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-slot-game-strategy__card-text {
  color: #A7D9B8;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-slot-game-strategy__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-slot-game-strategy__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-slot-game-strategy__advantage-item {
  background-color: rgba(17, 39, 27, 0.6); /* Card BG with transparency */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  transition: background-color 0.3s ease;
}

.page-slot-game-strategy__advantage-item:hover {
  background-color: rgba(34, 199, 104, 0.2); /* Auxiliary Color with transparency */
}

.page-slot-game-strategy__advantage-title {
  font-size: 1.3em;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-game-strategy__faq-list {
  margin-top: 30px;
}

.page-slot-game-strategy__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-game-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
}

.page-slot-game-strategy__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

.page-slot-game-strategy__faq-item[open] .page-slot-game-strategy__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-slot-game-strategy__faq-qtext {
  flex-grow: 1;
}

.page-slot-game-strategy__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 20px;
  color: #2AD16F;
}

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

.page-slot-game-strategy__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8;
  font-size: 1em;
}

.page-slot-game-strategy__cta-section {
  text-align: center;
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-slot-game-strategy__hero-content {
    padding: 25px;
  }
  .page-slot-game-strategy__main-title {
    font-size: clamp(2em, 4.5vw, 2.8em);
  }
  .page-slot-game-strategy__lead-text {
    font-size: clamp(0.95em, 1.8vw, 1.1em);
  }
}

@media (max-width: 768px) {
  .page-slot-game-strategy__hero-section {
    min-height: 400px;
    padding-bottom: 20px;
  }
  .page-slot-game-strategy__hero-content {
    padding: 20px;
  }
  .page-slot-game-strategy__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-slot-game-strategy__lead-text {
    font-size: clamp(0.9em, 2.5vw, 1em);
  }
  .page-slot-game-strategy__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-slot-game-strategy__btn-primary,
  .page-slot-game-strategy__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 0.95em;
  }

  .page-slot-game-strategy__section-title {
    font-size: clamp(1.6em, 5vw, 2.2em);
    margin-bottom: 30px;
  }
  .page-slot-game-strategy__paragraph {
    font-size: 1em;
  }
  .page-slot-game-strategy__sub-title {
    font-size: clamp(1.2em, 4vw, 1.5em);
  }
  .page-slot-game-strategy__list-item {
    font-size: 0.95em;
  }
  .page-slot-game-strategy__card-title {
    font-size: 1.3em;
  }
  .page-slot-game-strategy__card-text {
    font-size: 0.9em;
  }
  .page-slot-game-strategy__advantage-title {
    font-size: 1.15em;
  }
  .page-slot-game-strategy__faq-question {
    font-size: 1.05em;
    padding: 15px 20px;
  }
  .page-slot-game-strategy__faq-answer {
    padding: 0 20px 15px;
  }

  /* Mobile image responsiveness */
  .page-slot-game-strategy img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-game-strategy__section,
  .page-slot-game-strategy__card,
  .page-slot-game-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-game-strategy__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  .page-slot-game-strategy__cta-buttons,
  .page-slot-game-strategy__button-group,
  .page-slot-game-strategy__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;
  }
}

/* Ensure content area images are not smaller than 200px */
.page-slot-game-strategy__text-block img,
.page-slot-game-strategy__card-image {
  min-width: 200px;
  min-height: 200px;
}

/* WCAG AA Contrast for text on Card BG (#11271B) and Background (#08160F) */
/* Text Main (#F2FFF6) and Text Secondary (#A7D9B8) are chosen to ensure contrast */
/* All text elements use these colors */

/* No filter properties to change image colors */
.page-slot-game-strategy img {
  filter: none; /* Ensure no unwanted filters */
}

/* Darken hero image for better text readability, not changing its original color */
.page-slot-game-strategy__hero-image {
  filter: brightness(0.5);
}