.page-resources-okfun-gcash-registration-guide {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-resources-okfun-gcash-registration-guide__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 0; /* Hero image will fill, padding handled by content */
}

.page-resources-okfun-gcash-registration-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.5); /* Slightly darken image for text readability */
}

.page-resources-okfun-gcash-registration-guide__hero-container {
  position: relative;
  width: 100%;
}

.page-resources-okfun-gcash-registration-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-resources-okfun-gcash-registration-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-okfun-gcash-registration-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

.page-resources-okfun-gcash-registration-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-okfun-gcash-registration-guide__button--register {
  background-color: #000000; /* Main color for register button */
  color: #FFFFFF; /* White text for register button */
  border: 2px solid #FFFFFF;
}

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

.page-resources-okfun-gcash-registration-guide__button--login {
  background-color: #FCBC45; /* Login specific color */
  color: #000000; /* Dark text for login button */
  border: 2px solid #FCBC45;
}

.page-resources-okfun-gcash-registration-guide__button--login:hover {
  background-color: #FFD700;
  border-color: #000000;
}

.page-resources-okfun-gcash-registration-guide__button--download {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FCBC45;
}

.page-resources-okfun-gcash-registration-guide__button--download:hover {
  background-color: #333333;
  border-color: #FFFFFF;
}

.page-resources-okfun-gcash-registration-guide__article-content {
  padding: 40px 20px;
  background-color: #FFFFFF; /* White background for article content */
}

.page-resources-okfun-gcash-registration-guide__content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-okfun-gcash-registration-guide__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-okfun-gcash-registration-guide__back-link:hover {
  color: #FCBC45;
}

.page-resources-okfun-gcash-registration-guide__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-okfun-gcash-registration-guide__sub-section-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-okfun-gcash-registration-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-okfun-gcash-registration-guide__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-okfun-gcash-registration-guide__image--centered {
  margin-left: auto;
  margin-right: auto;
}

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

.page-resources-okfun-gcash-registration-guide__list-item {
  margin-bottom: 10px;
  color: #333333;
}

.page-resources-okfun-gcash-registration-guide__list-item strong {
  color: #000000;
}

.page-resources-okfun-gcash-registration-guide__faq-container {
  margin-top: 30px;
}

.page-resources-okfun-gcash-registration-guide__faq-item {
  background-color: #F8F8F8;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-resources-okfun-gcash-registration-guide__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-okfun-gcash-registration-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-okfun-gcash-registration-guide__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-okfun-gcash-registration-guide__faq-answer {
  font-size: 1.1em;
  color: #555555;
  display: none;
  margin-top: 10px;
}

.page-resources-okfun-gcash-registration-guide__final-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 40px;
}

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

@media (max-width: 768px) {
  .page-resources-okfun-gcash-registration-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-okfun-gcash-registration-guide__hero-description {
    font-size: 1em;
  }
  .page-resources-okfun-gcash-registration-guide__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-okfun-gcash-registration-guide__button {
    width: 100%;
  }
  .page-resources-okfun-gcash-registration-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-okfun-gcash-registration-guide__sub-section-title {
    font-size: 1.5em;
  }
  .page-resources-okfun-gcash-registration-guide__paragraph,
  .page-resources-okfun-gcash-registration-guide__list-item,
  .page-resources-okfun-gcash-registration-guide__faq-question,
  .page-resources-okfun-gcash-registration-guide__faq-answer {
    font-size: 1em;
  }
  .page-resources-okfun-gcash-registration-guide__image {
    max-width: 100%;
    height: auto; /* Crucial for preventing horizontal scroll */
  }
  .page-resources-okfun-gcash-registration-guide__content-wrapper {
    padding: 0 10px;
  }
  .page-resources-okfun-gcash-registration-guide__final-cta {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-okfun-gcash-registration-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-okfun-gcash-registration-guide__hero-description {
    font-size: 0.9em;
  }
  .page-resources-okfun-gcash-registration-guide__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}