.page-blog-high-payout-slots-guide {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg: #11271B;
  --bg-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;

  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for the main content area */
  background-color: var(--bg-color); /* Body background from shared.css, content area uses this as base */
}

.page-blog-high-payout-slots-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  overflow: hidden;
  background-color: var(--deep-green);
}

.page-blog-high-payout-slots-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for aesthetic */
  opacity: 0.7;
}

.page-blog-high-payout-slots-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  width: 90%;
  z-index: 10;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-blog-high-payout-slots-guide__main-title {
  color: var(--gold-color);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  /* No fixed font-size, rely on clamp if needed, otherwise just weight/line-height */
}

.page-blog-high-payout-slots-guide__intro-description {
  color: var(--text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-blog-high-payout-slots-guide__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-high-payout-slots-guide__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  border: none;
  margin-top: 10px;
}

.page-blog-high-payout-slots-guide__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--primary-color), 0.4);
}

.page-blog-high-payout-slots-guide__btn-secondary {
  background: var(--card-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 15px;
  margin-top: 10px;
}

.page-blog-high-payout-slots-guide__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-main);
  transform: translateY(-2px);
}

.page-blog-high-payout-slots-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--text-main);
  background-color: var(--bg-color);
}

.page-blog-high-payout-slots-guide__section-container {
  margin-bottom: 40px;
  padding: 25px;
  background-color: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.page-blog-high-payout-slots-guide__section-title {
  color: var(--primary-color);
  font-size: 2.2em;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 10px;
}

.page-blog-high-payout-slots-guide__sub-title {
  color: var(--gold-color);
  font-size: 1.6em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-high-payout-slots-guide p {
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.page-blog-high-payout-slots-guide__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.page-blog-high-payout-slots-guide__list li {
  margin-bottom: 10px;
}

.page-blog-high-payout-slots-guide__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 25px 0;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-high-payout-slots-guide__faq-list {
  margin-top: 30px;
}

.page-blog-high-payout-slots-guide__faq-item {
  background-color: var(--deep-green);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-high-payout-slots-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  color: var(--text-main);
  font-weight: bold;
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-high-payout-slots-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-high-payout-slots-guide__faq-question:hover {
  background-color: var(--divider-color);
}

.page-blog-high-payout-slots-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--primary-color);
}

.page-blog-high-payout-slots-guide__faq-answer {
  padding: 15px 20px;
  color: var(--text-secondary);
  background-color: var(--deep-green);
  border-top: 1px solid var(--divider-color);
}

.page-blog-high-payout-slots-guide__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.page-blog-high-payout-slots-guide__cta-banner {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 25px;
  border-radius: 8px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-high-payout-slots-guide__main-title {
    font-size: 2.5em;
  }
  .page-blog-high-payout-slots-guide__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-high-payout-slots-guide__hero-content {
    padding: 15px;
    width: 95%;
  }
  .page-blog-high-payout-slots-guide__main-title {
    font-size: clamp(1.8em, 5vw, 2.2em);
  }
  .page-blog-high-payout-slots-guide__intro-description {
    font-size: 1em;
  }
  .page-blog-high-payout-slots-guide__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
    margin: 5px 0;
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-high-payout-slots-guide__btn-secondary {
    margin-left: 0;
  }
  .page-blog-high-payout-slots-guide__section-title {
    font-size: 1.8em;
  }
  .page-blog-high-payout-slots-guide__sub-title {
    font-size: 1.4em;
  }
  .page-blog-high-payout-slots-guide__content-area {
    padding: 20px 15px;
  }
  .page-blog-high-payout-slots-guide__section-container {
    padding: 15px;
  }
  .page-blog-high-payout-slots-guide__list {
    margin-left: 20px;
  }
  .page-blog-high-payout-slots-guide__image-full-width,
  .page-blog-high-payout-slots-guide__cta-banner {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-high-payout-slots-guide__cta-wrapper {
    padding: 20px;
  }

  /* Ensure all image containers are responsive */
  .page-blog-high-payout-slots-guide__hero-section,
  .page-blog-high-payout-slots-guide__section-container,
  .page-blog-high-payout-slots-guide__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Text readability on mobile */
  .page-blog-high-payout-slots-guide p,
  .page-blog-high-payout-slots-guide li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-high-payout-slots-guide__main-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }
  .page-blog-high-payout-slots-guide__hero-content {
    width: 98%;
  }
  .page-blog-high-payout-slots-guide__section-title {
    font-size: 1.5em;
  }
  .page-blog-high-payout-slots-guide__sub-title {
    font-size: 1.2em;
  }
  .page-blog-high-payout-slots-guide__cta-button {
    display: block;
    margin: 10px auto;
  }
}