.page-resources-kv888-registration-login-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-resources-kv888-registration-login-guide__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-resources-kv888-registration-login-guide__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-kv888-registration-login-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  min-height: 600px;
  overflow: hidden;
}

.page-resources-kv888-registration-login-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-resources-kv888-registration-login-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-kv888-registration-login-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-kv888-registration-login-guide__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Custom color for main title */
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-kv888-registration-login-guide__intro-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-kv888-registration-login-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-kv888-registration-login-guide__btn-primary,
.page-resources-kv888-registration-login-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-kv888-registration-login-guide__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-resources-kv888-registration-login-guide__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-resources-kv888-registration-login-guide__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #FFFF00;
}

.page-resources-kv888-registration-login-guide__btn-secondary:hover {
  background-color: #FFFF00;
  color: #C30808;
}

.page-resources-kv888-registration-login-guide__content-section {
  padding: 60px 20px;
}

.page-resources-kv888-registration-login-guide__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-resources-kv888-registration-login-guide__section-title {
  font-size: 2.5em;
  color: #017439;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

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

.page-resources-kv888-registration-login-guide__paragraph a {
  color: #017439;
  text-decoration: underline;
}

.page-resources-kv888-registration-login-guide__paragraph a:hover {
  color: #005f2f;
}

.page-resources-kv888-registration-login-guide__keyword {
  font-weight: bold;
  color: #017439;
}

.page-resources-kv888-registration-login-guide__ordered-list,
.page-resources-kv888-registration-login-guide__unordered-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-resources-kv888-registration-login-guide__ordered-list .page-resources-kv888-registration-login-guide__list-item {
  counter-increment: step-counter;
  margin-bottom: 30px;
  position: relative;
  padding-left: 60px;
}

.page-resources-kv888-registration-login-guide__ordered-list .page-resources-kv888-registration-login-guide__list-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #017439;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-resources-kv888-registration-login-guide__list-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
}

.page-resources-kv888-registration-login-guide__list-description {
  font-size: 1.05em;
  line-height: 1.6;
}

.page-resources-kv888-registration-login-guide__unordered-list .page-resources-kv888-registration-login-guide__list-item {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.page-resources-kv888-registration-login-guide__unordered-list .page-resources-kv888-registration-login-guide__list-item::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #017439;
  font-size: 1.5em;
  line-height: 1;
}

.page-resources-kv888-registration-login-guide__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-resources-kv888-registration-login-guide__app-download {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.page-resources-kv888-registration-login-guide__app-info {
  flex: 1;
}

.page-resources-kv888-registration-login-guide__app-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 20px;
}

.page-resources-kv888-registration-login-guide__app-download .page-resources-kv888-registration-login-guide__content-image {
  max-width: 300px;
  flex-shrink: 0;
  margin: 0;
}

.page-resources-kv888-registration-login-guide__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-resources-kv888-registration-login-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: cover;
}

.page-resources-kv888-registration-login-guide__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2); /* Semi-transparent overlay */
  display: block;
  cursor: pointer;
}

.page-resources-kv888-registration-login-guide__video-overlay-link:hover {
  background: rgba(0, 0, 0, 0.1);
}

.page-resources-kv888-registration-login-guide__video-caption {
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  color: #555555;
}

.page-resources-kv888-registration-login-guide__faq-list {
  margin-top: 40px;
}

.page-resources-kv888-registration-login-guide__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-kv888-registration-login-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

.page-resources-kv888-registration-login-guide__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-kv888-registration-login-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-kv888-registration-login-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #333333;
}

.page-resources-kv888-registration-login-guide__faq-answer p {
  margin: 0;
  padding-bottom: 15px;
}

.page-resources-kv888-registration-login-guide__faq-item.active .page-resources-kv888-registration-login-guide__faq-answer {
  max-height: 1000px !important; /* Large enough to show content */
  padding: 15px 25px;
}

.page-resources-kv888-registration-login-guide__faq-item.active .page-resources-kv888-registration-login-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-kv888-registration-login-guide__cta-final {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* Mobile Floating Buttons */
.page-resources-kv888-registration-login-guide__mobile-floating-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none; /* Hidden by default, shown on mobile */
  justify-content: space-around;
  align-items: center;
  background-color: #017439; /* Brand primary color */
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.page-resources-kv888-registration-login-guide__mobile-btn-register,
.page-resources-kv888-registration-login-guide__mobile-btn-login {
  display: block;
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  margin: 0 5px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-kv888-registration-login-guide__mobile-btn-register {
  background-color: #C30808; /* Custom register color */
  color: #FFFF00; /* Custom font color */
  border: 1px solid #C30808;
}

.page-resources-kv888-registration-login-guide__mobile-btn-register:hover {
  background-color: #a00606;
}

.page-resources-kv888-registration-login-guide__mobile-btn-login {
  background-color: #C30808; /* Custom login color */
  color: #FFFF00; /* Custom font color */
  border: 1px solid #C30808;
}

.page-resources-kv888-registration-login-guide__mobile-btn-login:hover {
  background-color: #a00606;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-kv888-registration-login-guide__main-title {
    font-size: 2.8em;
  }

  .page-resources-kv888-registration-login-guide__section-title {
    font-size: 2em;
  }

  .page-resources-kv888-registration-login-guide__app-download {
    flex-direction: column;
    text-align: center;
  }

  .page-resources-kv888-registration-login-guide__app-download .page-resources-kv888-registration-login-guide__content-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-kv888-registration-login-guide__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-kv888-registration-login-guide__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-resources-kv888-registration-login-guide__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-kv888-registration-login-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-kv888-registration-login-guide__btn-primary,
  .page-resources-kv888-registration-login-guide__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-kv888-registration-login-guide__content-section {
    padding: 40px 15px;
  }

  .page-resources-kv888-registration-login-guide__container {
    padding: 0 15px;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-resources-kv888-registration-login-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }

  .page-resources-kv888-registration-login-guide__paragraph,
  .page-resources-kv888-registration-login-guide__list-description {
    font-size: 0.95em;
  }

  .page-resources-kv888-registration-login-guide__list-title {
    font-size: 1.3em;
  }

  .page-resources-kv888-registration-login-guide__ordered-list .page-resources-kv888-registration-login-guide__list-item {
    padding-left: 50px;
  }

  .page-resources-kv888-registration-login-guide__ordered-list .page-resources-kv888-registration-login-guide__list-item::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }

  .page-resources-kv888-registration-login-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-kv888-registration-login-guide__app-download {
    padding: 20px;
    gap: 20px;
  }

  .page-resources-kv888-registration-login-guide__app-download .page-resources-kv888-registration-login-guide__content-image {
    max-width: 200px;
  }

  .page-resources-kv888-registration-login-guide__app-title {
    font-size: 1.5em;
  }

  .page-resources-kv888-registration-login-guide__video-wrapper {
    margin-left: 15px;
    margin-right: 15px;
    max-width: calc(100% - 30px) !important;
    width: calc(100% - 30px) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-resources-kv888-registration-login-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-kv888-registration-login-guide__video-caption {
    padding: 0 15px;
  }

  .page-resources-kv888-registration-login-guide__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }

  .page-resources-kv888-registration-login-guide__faq-answer {
    padding: 0 20px;
  }

  .page-resources-kv888-registration-login-guide__faq-item.active .page-resources-kv888-registration-login-guide__faq-answer {
    padding: 15px 20px;
  }

  .page-resources-kv888-registration-login-guide__cta-final {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-kv888-registration-login-guide__mobile-floating-buttons {
    display: flex;
  }

  /* Ensure all image elements within the content area are responsive */
  .page-resources-kv888-registration-login-guide img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-resources-kv888-registration-login-guide__section,
  .page-resources-kv888-registration-login-guide__card,
  .page-resources-kv888-registration-login-guide__container,
  .page-resources-kv888-registration-login-guide__app-download,
  .page-resources-kv888-registration-login-guide__video-section,
  .page-resources-kv888-registration-login-guide__video-container,
  .page-resources-kv888-registration-login-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-resources-kv888-registration-login-guide__main-title {
    font-size: 1.8em;
  }

  .page-resources-kv888-registration-login-guide__section-title {
    font-size: 1.5em;
  }

  .page-resources-kv888-registration-login-guide__list-title {
    font-size: 1.2em;
  }

  .page-resources-kv888-registration-login-guide__faq-question {
    font-size: 1em;
  }
}