/* style/resources-k88-mobile-download.css */
.page-resources-k88-mobile-download {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-resources-k88-mobile-download__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-k88-mobile-download__content-width {
  max-width: 800px;
}

.page-resources-k88-mobile-download__hero {
  background: linear-gradient(135deg, #0A2463 0%, #3a5c96 100%); /* Adjusted gradient for better contrast */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-k88-mobile-download__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,blue_gold_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-k88-mobile-download__hero > .page-resources-k88-mobile-download__container {
  position: relative;
  z-index: 1;
}

.page-resources-k88-mobile-download__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-k88-mobile-download__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-resources-k88-mobile-download__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-resources-k88-mobile-download__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-resources-k88-mobile-download__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
}

.page-resources-k88-mobile-download__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-k88-mobile-download__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-k88-mobile-download__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-resources-k88-mobile-download__btn--large {
  padding: 16px 32px;
  font-size: 1.2em;
}

.page-resources-k88-mobile-download__btn--inline {
    padding: 8px 16px;
    font-size: 0.9em;
    border-radius: 5px;
    background-color: #0A2463;
    color: #FFD700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.page-resources-k88-mobile-download__btn--inline:hover {
    background-color: #1a3e7a;
}

.page-resources-k88-mobile-download__hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-k88-mobile-download__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  color: #333;
}

.page-resources-k88-mobile-download__section--light {
  background-color: #fff;
}

.page-resources-k88-mobile-download__section-title {
  font-size: 2.2em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-k88-mobile-download__section p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-resources-k88-mobile-download__list,
.page-resources-k88-mobile-download__steps-list,
.page-resources-k88-mobile-download__sub-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-resources-k88-mobile-download__list li,
.page-resources-k88-mobile-download__sub-list li {
  background-color: #e6eef9;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #0A2463;
  border-radius: 5px;
  font-size: 1.0em;
  color: #333;
}

.page-resources-k88-mobile-download__list li strong {
  color: #0A2463;
}

.page-resources-k88-mobile-download__image--center {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-k88-mobile-download__image--small {
    max-width: 400px;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-resources-k88-mobile-download__image--medium {
    max-width: 550px;
    margin: 25px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-resources-k88-mobile-download__steps-list {
  counter-reset: step-counter;
}

.page-resources-k88-mobile-download__steps-list li {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  position: relative;
  padding-left: 70px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-k88-mobile-download__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #0A2463;
  color: #FFD700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-resources-k88-mobile-download__step-title {
  color: #0A2463;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-k88-mobile-download__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-k88-mobile-download__feature-item {
  background-color: #e6eef9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-resources-k88-mobile-download__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-k88-mobile-download__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-resources-k88-mobile-download__feature-title {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-resources-k88-mobile-download__faq-accordion {
  margin-top: 40px;
}

.page-resources-k88-mobile-download__accordion-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-resources-k88-mobile-download__accordion-header {
  background-color: #0A2463;
  color: #FFD700;
  padding: 18px 25px;
  cursor: pointer;
  margin: 0;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-resources-k88-mobile-download__accordion-header:hover {
  background-color: #1a3e7a;
}

.page-resources-k88-mobile-download__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-resources-k88-mobile-download__accordion-item.active .page-resources-k88-mobile-download__accordion-header::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-k88-mobile-download__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-k88-mobile-download__accordion-content p {
  padding: 15px 0;
  margin: 0;
  color: #555;
}

.page-resources-k88-mobile-download__section--cta {
  background-color: #0A2463;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-resources-k88-mobile-download__section--cta .page-resources-k88-mobile-download__section-title {
  color: #FFD700;
}

.page-resources-k88-mobile-download__section--cta p {
  color: #e0e0e0;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-resources-k88-mobile-download__cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.page-resources-k88-mobile-download__note {
  font-size: 0.95em;
  color: #cccccc;
  margin-top: 20px;
}

.page-resources-k88-mobile-download__back-link {
  display: inline-block;
  margin-top: 40px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-k88-mobile-download__back-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-k88-mobile-download__hero-title {
    font-size: 2.2em;
  }

  .page-resources-k88-mobile-download__hero-description {
    font-size: 1em;
  }

  .page-resources-k88-mobile-download__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-k88-mobile-download__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-resources-k88-mobile-download__section-title {
    font-size: 1.8em;
  }

  .page-resources-k88-mobile-download__steps-list li {
    padding-left: 60px;
  }

  .page-resources-k88-mobile-download__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }

  .page-resources-k88-mobile-download__step-title {
    font-size: 1.3em;
  }

  .page-resources-k88-mobile-download__features-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-k88-mobile-download__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-k88-mobile-download__hero-title {
    font-size: 1.8em;
  }

  .page-resources-k88-mobile-download__hero-description {
    font-size: 0.9em;
  }

  .page-resources-k88-mobile-download__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-k88-mobile-download__section {
    padding: 40px 0;
  }

  .page-resources-k88-mobile-download__section-title {
    font-size: 1.5em;
  }

  .page-resources-k88-mobile-download__list li,
  .page-resources-k88-mobile-download__sub-list li {
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .page-resources-k88-mobile-download__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
}