/* style/resources-high-payout-slots.css */
.page-resources-high-payout-slots {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-high-payout-slots__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  padding: 0;
}

.page-resources-high-payout-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-resources-high-payout-slots__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
  border-radius: 8px;
}

.page-resources-high-payout-slots__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45;
  line-height: 1.2;
}

.page-resources-high-payout-slots__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-resources-high-payout-slots__hero-cta {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FCBC45;
  color: #000000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-high-payout-slots__hero-cta:hover {
  background-color: #FFD700;
}

.page-resources-high-payout-slots__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-high-payout-slots__breadcrumb {
  font-size: 0.9em;
  margin-bottom: 30px;
  color: #666666;
}

.page-resources-high-payout-slots__breadcrumb-link {
  color: #FCBC45;
  text-decoration: none;
}

.page-resources-high-payout-slots__breadcrumb-link:hover {
  text-decoration: underline;
}

.page-resources-high-payout-slots__article-heading {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-high-payout-slots__article-subheading {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-high-payout-slots__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

.page-resources-high-payout-slots__article-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-high-payout-slots__article-list,
.page-resources-high-payout-slots__article-ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-high-payout-slots__article-ordered-list {
  list-style-type: decimal;
}

.page-resources-high-payout-slots__article-list-item {
  margin-bottom: 10px;
}

.page-resources-high-payout-slots__button-group {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-high-payout-slots__button {
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 120px; /* Ensure buttons have a minimum width */
}

.page-resources-high-payout-slots__button--register {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-resources-high-payout-slots__button--register:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-high-payout-slots__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-high-payout-slots__button--login:hover {
  background-color: #FFD700;
  border-color: #FFD700;
}

.page-resources-high-payout-slots__button--secondary {
  background-color: #f0f0f0;
  color: #333333;
  border: 2px solid #e0e0e0;
}

.page-resources-high-payout-slots__button--secondary:hover {
  background-color: #e0e0e0;
  border-color: #d0d0d0;
}

.page-resources-high-payout-slots__return-link {
  text-align: center;
  margin-top: 50px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-high-payout-slots__hero-title {
    font-size: 2.8em;
  }
  .page-resources-high-payout-slots__hero-description {
    font-size: 1.1em;
  }
  .page-resources-high-payout-slots__article-heading {
    font-size: 2em;
  }
  .page-resources-high-payout-slots__article-subheading {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-resources-high-payout-slots__hero-title {
    font-size: 2em;
  }
  .page-resources-high-payout-slots__hero-description {
    font-size: 1em;
  }
  .page-resources-high-payout-slots__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-high-payout-slots__content-area {
    padding: 20px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .page-resources-high-payout-slots__article-heading {
    font-size: 1.8em;
  }
  .page-resources-high-payout-slots__article-subheading {
    font-size: 1.3em;
  }
  .page-resources-high-payout-slots__article-paragraph,
  .page-resources-high-payout-slots__article-list,
  .page-resources-high-payout-slots__article-ordered-list {
    font-size: 1em;
  }
  .page-resources-high-payout-slots__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-high-payout-slots__button {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .page-resources-high-payout-slots__article-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }
  /* Content area image size limit for mobile */
  .page-resources-high-payout-slots img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }
}

@media (max-width: 480px) {
  .page-resources-high-payout-slots__hero-title {
    font-size: 1.5em;
  }
  .page-resources-high-payout-slots__hero-description {
    font-size: 0.9em;
  }
  .page-resources-high-payout-slots__hero-cta {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-resources-high-payout-slots__article-heading {
    font-size: 1.5em;
  }
  .page-resources-high-payout-slots__article-subheading {
    font-size: 1.2em;
  }
}