/* style/resources-jili-game-app-download-guide.css */
.page-resources-jili-game-app-download-guide {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light text for dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.page-resources-jili-game-app-download-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-jili-game-app-download-guide__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3A404C 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Auxiliary color for hero text */
  position: relative;
  overflow: hidden;
}

.page-resources-jili-game-app-download-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Highlighted title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-jili-game-app-download-guide__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E5E5E5;
}

.page-resources-jili-game-app-download-guide__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-jili-game-app-download-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  text-align: center;
}

.page-resources-jili-game-app-download-guide__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A202C; /* Main color for text */
  border: 2px solid #FFD700;
}

.page-resources-jili-game-app-download-guide__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-jili-game-app-download-guide__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-jili-game-app-download-guide__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-3px);
}

.page-resources-jili-game-app-download-guide__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-resources-jili-game-app-download-guide__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-resources-jili-game-app-download-guide__section {
  padding: 60px 0;
  background-color: #2A303C;
  margin-bottom: 20px;
}

.page-resources-jili-game-app-download-guide__section:nth-child(even) {
  background-color: #1A202C;
}

.page-resources-jili-game-app-download-guide__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
}

.page-resources-jili-game-app-download-guide__section-description {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-jili-game-app-download-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-resources-jili-game-app-download-guide__content-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-resources-jili-game-app-download-guide__content-grid:nth-child(odd) .page-resources-jili-game-app-download-guide__content-image {
    order: 2;
  }
}

.page-resources-jili-game-app-download-guide__content-text h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-jili-game-app-download-guide__content-text p {
  color: #E5E5E5;
  margin-bottom: 15px;
}

.page-resources-jili-game-app-download-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-jili-game-app-download-guide__image--small {
  max-width: 70%;
  display: block;
  margin: 20px auto;
}

.page-resources-jili-game-app-download-guide__highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-resources-jili-game-app-download-guide__platform-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 15px;
  flex-wrap: wrap;
}

.page-resources-jili-game-app-download-guide__tab-btn {
  background-color: #3A404C;
  color: #E5E5E5;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-jili-game-app-download-guide__tab-btn.active,
.page-resources-jili-game-app-download-guide__tab-btn:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources-jili-game-app-download-guide__tab-content {
  display: none;
  padding: 30px 0;
  border-top: 1px solid #3A404C;
}

.page-resources-jili-game-app-download-guide__tab-content.active {
  display: block;
}

.page-resources-jili-game-app-download-guide__step-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-jili-game-app-download-guide__step-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-resources-jili-game-app-download-guide__step-list li {
  background-color: #2A303C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 70px;
}

.page-resources-jili-game-app-download-guide__step-list li::before {
  counter-increment: step-counter;
  content: "Bước " counter(step-counter);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #FFD700;
  color: #1A202C;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-resources-jili-game-app-download-guide__step-list li strong {
  display: block;
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-jili-game-app-download-guide__step-list li p {
  color: #E5E5E5;
  margin-bottom: 10px;
}

.page-resources-jili-game-app-download-guide__sub-list {
  list-style-type: disc;
  margin-left: 25px;
  color: #C0C0C0;
}

.page-resources-jili-game-app-download-guide__sub-list li {
  background-color: transparent;
  padding: 5px 0;
  box-shadow: none;
  margin-bottom: 5px;
  padding-left: 0;
}

.page-resources-jili-game-app-download-guide__sub-list li::before {
  display: none;
}

.page-resources-jili-game-app-download-guide__faq-item {
  background-color: #2A303C;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-jili-game-app-download-guide__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-jili-game-app-download-guide__faq-answer {
  color: #E5E5E5;
  font-size: 1em;
}

.page-resources-jili-game-app-download-guide__cta {
  text-align: center;
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
  padding: 80px 0;
}

.page-resources-jili-game-app-download-guide__cta .page-resources-jili-game-app-download-guide__section-title {
  color: #1A202C;
}

.page-resources-jili-game-app-download-guide__cta .page-resources-jili-game-app-download-guide__section-description {
  color: #3A404C;
}

.page-resources-jili-game-app-download-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-resources-jili-game-app-download-guide__cta-buttons .page-resources-jili-game-app-download-guide__btn--primary {
  background-color: #1A202C;
  color: #FFD700;
  border-color: #1A202C;
}

.page-resources-jili-game-app-download-guide__cta-buttons .page-resources-jili-game-app-download-guide__btn--primary:hover {
  background-color: #3A404C;
  border-color: #3A404C;
  color: #FFD700;
}

.page-resources-jili-game-app-download-guide__cta-buttons .page-resources-jili-game-app-download-guide__btn--secondary {
  background-color: transparent;
  color: #1A202C;
  border-color: #1A202C;
}

.page-resources-jili-game-app-download-guide__cta-buttons .page-resources-jili-game-app-download-guide__btn--secondary:hover {
  background-color: #1A202C;
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-jili-game-app-download-guide__hero-title {
    font-size: 2.8em;
  }
  .page-resources-jili-game-app-download-guide__hero-subtitle {
    font-size: 1.2em;
  }
  .page-resources-jili-game-app-download-guide__section-title {
    font-size: 2em;
  }
  .page-resources-jili-game-app-download-guide__step-list li {
    padding-left: 60px;
  }
  .page-resources-jili-game-app-download-guide__step-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1em;
    left: 15px;
    top: 18px;
  }
}

@media (max-width: 768px) {
  .page-resources-jili-game-app-download-guide__hero-title {
    font-size: 2.2em;
  }
  .page-resources-jili-game-app-download-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-jili-game-app-download-guide__hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-resources-jili-game-app-download-guide__btn {
    width: 80%;
  }
  .page-resources-jili-game-app-download-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-jili-game-app-download-guide__content-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-jili-game-app-download-guide__content-grid:nth-child(odd) .page-resources-jili-game-app-download-guide__content-image {
    order: unset;
  }
  .page-resources-jili-game-app-download-guide__image--small {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .page-resources-jili-game-app-download-guide__hero-title {
    font-size: 1.8em;
  }
  .page-resources-jili-game-app-download-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-jili-game-app-download-guide__btn {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-resources-jili-game-app-download-guide__btn--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-resources-jili-game-app-download-guide__step-list li {
    padding-left: 50px;
  }
  .page-resources-jili-game-app-download-guide__step-list li::before {
    width: 30px;
    height: 30px;
    font-size: 0.9em;
    left: 10px;
    top: 15px;
  }
  .page-resources-jili-game-app-download-guide__platform-tabs {
    flex-direction: column;
    align-items: center;
  }
  .page-resources-jili-game-app-download-guide__tab-btn {
    width: 90%;
  }
}