/* style/resources-how-to-login-kl99.css */

/* 智能文字颜色选择器 - Sử dụng màu chữ trắng trên nền tối mặc định của body */
.page-resources-how-to-login-kl99 {
  color: #ffffff; /* Mặc định chữ trắng trên nền tối */
  background-color: var(--dark-bg-1); /* Sử dụng biến nền từ shared.css */
  padding-top: 120px; /* Khoảng cách cho thanh nav cố định trên desktop */
}

.page-resources-how-to-login-kl99__hero-banner {
  background: linear-gradient(135deg, #0A2463, #E0B14A);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-resources-how-to-login-kl99__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-how-to-login-kl99__subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-resources-how-to-login-kl99__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 10px;
  cursor: pointer;
  border: 2px solid transparent; /* Ensure consistent border */
}

.page-resources-how-to-login-kl99__btn--primary {
  background: #E0B14A;
  color: #0A2463;
  border-color: #E0B14A;
}

.page-resources-how-to-login-kl99__btn--primary:hover {
  background: #f0c268;
  border-color: #f0c268;
  transform: translateY(-3px);
}

.page-resources-how-to-login-kl99__btn--secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-resources-how-to-login-kl99__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-resources-how-to-login-kl99__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 20px;
}

.page-resources-how-to-login-kl99__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-how-to-login-kl99__container--centered {
  text-align: center;
}

.page-resources-how-to-login-kl99__section {
  padding: 60px 0;
}

.page-resources-how-to-login-kl99__section--intro {
  background-color: var(--dark-bg-1); /* Nền tối */
  color: #ffffff;
}

.page-resources-how-to-login-kl99__section--guide {
  background-color: #1a1a1a; /* Nền tối hơn */
  color: #ffffff;
}

.page-resources-how-to-login-kl99__section--promo {
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

.page-resources-how-to-login-kl99__section--faq {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-resources-how-to-login-kl99__section--support {
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

.page-resources-how-to-login-kl99__section--cta {
  background: linear-gradient(90deg, #0A2463, #E0B14A);
  color: #ffffff;
  text-align: center;
}

.page-resources-how-to-login-kl99__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #E0B14A;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-how-to-login-kl99__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B14A;
  border-radius: 2px;
}

.page-resources-how-to-login-kl99__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #cccccc;
}

.page-resources-how-to-login-kl99__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-resources-how-to-login-kl99__content-wrapper:nth-of-type(even) {
  flex-direction: row-reverse;
}

.page-resources-how-to-login-kl99__text-block {
  flex: 1;
  line-height: 1.8;
  font-size: 1.05em;
}

.page-resources-how-to-login-kl99__text-block p {
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-resources-how-to-login-kl99__text-block ul {
  list-style: disc inside;
  padding-left: 20px;
}

.page-resources-how-to-login-kl99__text-block li {
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-resources-how-to-login-kl99__image-block {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-how-to-login-kl99__image-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-resources-how-to-login-kl99__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-how-to-login-kl99__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.page-resources-how-to-login-kl99__step-item:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-login-kl99__step-title {
  font-size: 1.5em;
  color: #E0B14A;
  margin-bottom: 15px;
}

.page-resources-how-to-login-kl99__step-item p {
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-resources-how-to-login-kl99__step-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-login-kl99__cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: rgba(224, 177, 74, 0.1);
    border-radius: 10px;
    border: 1px solid #E0B14A;
}

.page-resources-how-to-login-kl99__cta-block p {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.5;
}

.page-resources-how-to-login-kl99__cta-block p a {
    color: #E0B14A;
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-how-to-login-kl99__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-how-to-login-kl99__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.page-resources-how-to-login-kl99__promo-card:hover {
  transform: translateY(-5px);
}

.page-resources-how-to-login-kl99__promo-card img {
  max-width: 100%;
  height: 250px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-login-kl99__promo-title {
  font-size: 1.6em;
  color: #E0B14A;
  margin-bottom: 15px;
}

.page-resources-how-to-login-kl99__promo-text {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}

.page-resources-how-to-login-kl99__promo-note {
  text-align: center;
  margin-top: 50px;
  font-style: italic;
  color: #aaaaaa;
  font-size: 0.95em;
}

/* FAQ Section */
.page-resources-how-to-login-kl99__faq-list {
  margin-top: 40px;
}

.page-resources-how-to-login-kl99__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-resources-how-to-login-kl99__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A2463;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-resources-how-to-login-kl99__faq-item.active .page-resources-how-to-login-kl99__faq-question {
  background: #1a3a7a;
}

.page-resources-how-to-login-kl99__faq-question:hover {
  background: #1a3a7a;
}

.page-resources-how-to-login-kl99__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-resources-how-to-login-kl99__faq-toggle {
  font-size: 2em;
  font-weight: bold;
  line-height: 1;
  color: #E0B14A;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-resources-how-to-login-kl99__faq-item.active .page-resources-how-to-login-kl99__faq-toggle {
  transform: rotate(0deg); /* Reset rotation for minus sign */
  color: #ffffff;
}

.page-resources-how-to-login-kl99__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
  line-height: 1.7;
}

.page-resources-how-to-login-kl99__faq-item.active .page-resources-how-to-login-kl99__faq-answer {
  max-height: 2000px !important; /* Ensure enough height for content */
  padding: 20px 25px !important;
  opacity: 1;
  background: #1a1a1a;
  border-radius: 0 0 8px 8px;
}

.page-resources-how-to-login-kl99__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-how-to-login-kl99__main-title {
    font-size: 2.8em;
  }

  .page-resources-how-to-login-kl99__subtitle {
    font-size: 1.2em;
  }

  .page-resources-how-to-login-kl99__section-title {
    font-size: 2em;
  }

  .page-resources-how-to-login-kl99__content-wrapper {
    flex-direction: column;
  }

  .page-resources-how-to-login-kl99__content-wrapper:nth-of-type(even) {
    flex-direction: column;
  }

  .page-resources-how-to-login-kl99__image-block {
    order: -1; /* Image appears above text on smaller screens */
  }

  .page-resources-how-to-login-kl99__promo-card img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-resources-how-to-login-kl99 {
    padding-top: 100px; /* Khoảng cách cho thanh nav cố định trên mobile */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-how-to-login-kl99__hero-banner {
    padding: 60px 15px;
  }

  .page-resources-how-to-login-kl99__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-resources-how-to-login-kl99__subtitle {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-resources-how-to-login-kl99__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 0 5px;
  }

  .page-resources-how-to-login-kl99__section {
    padding: 40px 0;
  }

  .page-resources-how-to-login-kl99__container {
    padding: 0 15px;
  }

  .page-resources-how-to-login-kl99__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-how-to-login-kl99__section-description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-resources-how-to-login-kl99__content-wrapper {
    gap: 30px;
  }

  .page-resources-how-to-login-kl99__text-block {
    font-size: 0.95em;
  }

  .page-resources-how-to-login-kl99__steps {
    gap: 20px;
  }

  .page-resources-how-to-login-kl99__step-item {
    padding: 20px;
  }

  .page-resources-how-to-login-kl99__step-title {
    font-size: 1.3em;
  }

  .page-resources-how-to-login-kl99__promo-grid {
    gap: 20px;
  }

  .page-resources-how-to-login-kl99__promo-card {
    padding: 20px;
  }

  .page-resources-how-to-login-kl99__promo-card img {
    height: 180px;
  }

  .page-resources-how-to-login-kl99__promo-title {
    font-size: 1.4em;
  }

  .page-resources-how-to-login-kl99__faq-question {
    padding: 15px 20px;
  }

  .page-resources-how-to-login-kl99__faq-question h3 {
    font-size: 1em;
  }

  .page-resources-how-to-login-kl99__faq-toggle {
    font-size: 1.8em;
    width: 25px;
    height: 25px;
  }

  .page-resources-how-to-login-kl99__faq-answer {
    padding: 0 20px;
  }

  .page-resources-how-to-login-kl99__faq-item.active .page-resources-how-to-login-kl99__faq-answer {
    padding: 15px 20px !important;
  }

  .page-resources-how-to-login-kl99__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-how-to-login-kl99__btn {
    width: 100%;
    margin: 0;
  }
}

/* 强制图片响应式适配 */
.page-resources-how-to-login-kl99 img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-resources-how-to-login-kl99__image-block,
.page-resources-how-to-login-kl99__step-item,
.page-resources-how-to-login-kl99__promo-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .page-resources-how-to-login-kl99 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-resources-how-to-login-kl99__section,
  .page-resources-how-to-login-kl99__container,
  .page-resources-how-to-login-kl99__image-block,
  .page-resources-how-to-login-kl99__step-item,
  .page-resources-how-to-login-kl99__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-how-to-login-kl99__section {
      padding-left: 15px;
      padding-right: 15px;
  }
}