.page-resources-okfun-guide {
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  background-color: #FFFFFF; /* Light background as per body background color */
  color: #333333; /* Dark text for contrast on light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-okfun-guide__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 0;
  margin-bottom: 40px;
}

.page-resources-okfun-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-okfun-guide__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.page-resources-okfun-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #FFFFFF;
  padding: 20px;
  max-width: 80%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-resources-okfun-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-resources-okfun-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-okfun-guide__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-okfun-guide__section {
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-okfun-guide__section--alt-bg {
  background-color: #F8F8F8;
}

.page-resources-okfun-guide__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-resources-okfun-guide__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-okfun-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-okfun-guide__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-resources-okfun-guide__list--ordered {
  list-style: decimal inside;
}

.page-resources-okfun-guide__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-okfun-guide__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);
  min-width: 200px; /* Enforce minimum width */
  min-height: 200px; /* Enforce minimum height */
}

.page-resources-okfun-guide__image--centered {
  text-align: center;
}

.page-resources-okfun-guide__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-resources-okfun-guide__button--register {
  background-color: #000000;
  color: #FFFFFF;
}

.page-resources-okfun-guide__button--register:hover {
  background-color: #333333;
}

.page-resources-okfun-guide__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-okfun-guide__button--login:hover {
  background-color: #e0a53b;
}

.page-resources-okfun-guide__button--explore, .page-resources-okfun-guide__button--play, .page-resources-okfun-guide__button--deposit, .page-resources-okfun-guide__button--promo, .page-resources-okfun-guide__button--download {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 20px;
}

.page-resources-okfun-guide__button--explore:hover, .page-resources-okfun-guide__button--play:hover, .page-resources-okfun-guide__button--deposit:hover, .page-resources-okfun-guide__button--promo:hover, .page-resources-okfun-guide__button--download:hover {
  background-color: #e0a53b;
}

.page-resources-okfun-guide__button--support, .page-resources-okfun-guide__button--faq, .page-resources-okfun-guide__button--home {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 20px;
}

.page-resources-okfun-guide__button--support:hover, .page-resources-okfun-guide__button--faq:hover, .page-resources-okfun-guide__button--home:hover {
  background-color: #333333;
}

.page-resources-okfun-guide__button--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-resources-okfun-guide__faq-list {
  margin-top: 30px;
}

.page-resources-okfun-guide__faq-item {
  background-color: #F0F0F0;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-resources-okfun-guide__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-resources-okfun-guide__faq-answer {
  font-size: 1em;
  color: #333333;
}

.page-resources-okfun-guide__section--cta {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(135deg, #000000, #333333);
  color: #FFFFFF;
}

.page-resources-okfun-guide__section--cta .page-resources-okfun-guide__section-title {
  color: #FCBC45;
}

.page-resources-okfun-guide__section--cta .page-resources-okfun-guide__paragraph {
  color: #F0F0F0;
  margin-bottom: 30px;
}

.page-resources-okfun-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-okfun-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-okfun-guide__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-resources-okfun-guide {
    padding-top: var(--header-offset, 120px);
  }
  .page-resources-okfun-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-okfun-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-okfun-guide__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-okfun-guide__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-okfun-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-okfun-guide__sub-title {
    font-size: 1.5em;
  }
  .page-resources-okfun-guide__paragraph, .page-resources-okfun-guide__list-item, .page-resources-okfun-guide__faq-answer {
    font-size: 1em;
  }
  .page-resources-okfun-guide__image {
    max-width: 100%;
    height: auto;
  }
  .page-resources-okfun-guide__hero-content {
    max-width: 90%;
  }
  .page-resources-okfun-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-okfun-guide__button--large {
    width: 80%;
    margin: 0 auto;
  }
  /* Ensure content area images are responsive and do not overflow */
  .page-resources-okfun-guide img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
  }
}

@media (max-width: 480px) {
  .page-resources-okfun-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-okfun-guide__hero-description {
    font-size: 0.9em;
  }
  .page-resources-okfun-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-okfun-guide__button {
    width: 90%;
  }
   .page-resources-okfun-guide__button--large {
    width: 90%;
  }
}