.page-slot-games-high-payout-recommendations {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--background-color); /* #08160F */
  line-height: 1.6;
  font-size: 16px;
}

.page-slot-games-high-payout-recommendations__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games-high-payout-recommendations__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* body handles padding-top, this is decorative */
  overflow: hidden;
}

.page-slot-games-high-payout-recommendations__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 675px;
  margin-bottom: 40px; /* Space between image and content */
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(87, 227, 141, 0.3);
}

.page-slot-games-high-payout-recommendations__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games-high-payout-recommendations__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold-color); /* #F2C14E */
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  line-height: 1.2;
}

.page-slot-games-high-payout-recommendations__hero-description {
  font-size: 1.2em;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-high-payout-recommendations__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-slot-games-high-payout-recommendations__btn-primary,
.page-slot-games-high-payout-recommendations__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

.page-slot-games-high-payout-recommendations__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.4);
}

.page-slot-games-high-payout-recommendations__btn-secondary {
  background: none;
  color: var(--gold-color); /* #F2C14E */
  border: 2px solid var(--gold-color); /* #F2C14E */
}

.page-slot-games-high-payout-recommendations__btn-secondary:hover {
  background: var(--gold-color); /* #F2C14E */
  color: var(--background-color); /* #08160F */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-slot-games-high-payout-recommendations__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--primary-color); /* #11A84E */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  text-shadow: 0 0 5px rgba(17, 168, 78, 0.3);
}

.page-slot-games-high-payout-recommendations__text-block {
  font-size: 1.1em;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games-high-payout-recommendations__intro-section,
.page-slot-games-high-payout-recommendations__how-we-choose-section,
.page-slot-games-high-payout-recommendations__top-games-section,
.page-slot-games-high-payout-recommendations__strategies-section,
.page-slot-games-high-payout-recommendations__promotions-section,
.page-slot-games-high-payout-recommendations__why-choose-section,
.page-slot-games-high-payout-recommendations__faq-section {
  padding: 60px 0;
  border-top: 1px solid var(--divider-color); /* #1E3A2A */
}

.page-slot-games-high-payout-recommendations__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-games-high-payout-recommendations__list-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-high-payout-recommendations__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.3);
}

.page-slot-games-high-payout-recommendations__list-title {
  color: var(--gold-color); /* #F2C14E */
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-slot-games-high-payout-recommendations__list-item p {
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 1em;
  margin-bottom: 0;
}

.page-slot-games-high-payout-recommendations__game-cards-grid,
.page-slot-games-high-payout-recommendations__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-high-payout-recommendations__game-card,
.page-slot-games-high-payout-recommendations__promo-card {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games-high-payout-recommendations__game-card:hover,
.page-slot-games-high-payout-recommendations__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(87, 227, 141, 0.3);
}

.page-slot-games-high-payout-recommendations__game-image,
.page-slot-games-high-payout-recommendations__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-slot-games-high-payout-recommendations__card-title {
  color: var(--primary-color); /* #11A84E */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-slot-games-high-payout-recommendations__card-text {
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 15px;
}

.page-slot-games-high-payout-recommendations__btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: var(--button-gradient); /* linear-gradient(180deg, #2AD16F 0%, #13994A 100%) */
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: background 0.3s ease, transform 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  margin-top: 10px;
}

.page-slot-games-high-payout-recommendations__btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(87, 227, 141, 0.4);
}

.page-slot-games-high-payout-recommendations__cta-text {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  color: var(--gold-color); /* #F2C14E */
  font-weight: 600;
}

.page-slot-games-high-payout-recommendations__faq-list {
  margin-top: 30px;
}

.page-slot-games-high-payout-recommendations__faq-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-slot-games-high-payout-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: var(--primary-color); /* #11A84E */
  font-size: 1.15em;
  font-weight: 600;
  background-color: rgba(17, 168, 78, 0.1);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-slot-games-high-payout-recommendations__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-high-payout-recommendations__faq-question:hover {
  background-color: rgba(17, 168, 78, 0.2);
}

.page-slot-games-high-payout-recommendations__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-slot-games-high-payout-recommendations__faq-answer {
  padding: 15px 25px 20px 25px;
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 1em;
  border-top: 1px solid var(--divider-color); /* #1E3A2A */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-slot-games-high-payout-recommendations__main-title {
    font-size: 2.5em;
  }

  .page-slot-games-high-payout-recommendations__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-high-payout-recommendations {
    font-size: 15px;
  }

  .page-slot-games-high-payout-recommendations__hero-section {
    padding-bottom: 40px;
  }

  .page-slot-games-high-payout-recommendations__hero-image {
    margin-bottom: 30px;
  }

  .page-slot-games-high-payout-recommendations__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-slot-games-high-payout-recommendations__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-slot-games-high-payout-recommendations__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-slot-games-high-payout-recommendations__btn-primary,
  .page-slot-games-high-payout-recommendations__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
    width: 100% !important;
    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-high-payout-recommendations__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 30px;
  }

  .page-slot-games-high-payout-recommendations__intro-section,
  .page-slot-games-high-payout-recommendations__how-we-choose-section,
  .page-slot-games-high-payout-recommendations__top-games-section,
  .page-slot-games-high-payout-recommendations__strategies-section,
  .page-slot-games-high-payout-recommendations__promotions-section,
  .page-slot-games-high-payout-recommendations__why-choose-section,
  .page-slot-games-high-payout-recommendations__faq-section {
    padding: 40px 0;
  }

  .page-slot-games-high-payout-recommendations__container {
    padding: 0 15px;
  }

  .page-slot-games-high-payout-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-high-payout-recommendations__hero-section,
  .page-slot-games-high-payout-recommendations__intro-section,
  .page-slot-games-high-payout-recommendations__how-we-choose-section,
  .page-slot-games-high-payout-recommendations__top-games-section,
  .page-slot-games-high-payout-recommendations__strategies-section,
  .page-slot-games-high-payout-recommendations__promotions-section,
  .page-slot-games-high-payout-recommendations__why-choose-section,
  .page-slot-games-high-payout-recommendations__faq-section,
  .page-slot-games-high-payout-recommendations__game-card,
  .page-slot-games-high-payout-recommendations__promo-card,
  .page-slot-games-high-payout-recommendations__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games-high-payout-recommendations__hero-section {
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-slot-games-high-payout-recommendations__game-image,
  .page-slot-games-high-payout-recommendations__promo-image {
    height: auto;
    max-height: 180px;
  }

  .page-slot-games-high-payout-recommendations__game-cards-grid,
  .page-slot-games-high-payout-recommendations__promo-grid {
    gap: 20px;
  }

  .page-slot-games-high-payout-recommendations__list-item {
    padding: 20px;
  }

  .page-slot-games-high-payout-recommendations__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-slot-games-high-payout-recommendations__faq-answer {
    padding: 10px 20px 15px 20px;
  }
}