/* style/resources-hello88-app-download-tutorial.css */
.page-resources-hello88-app-download-tutorial {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-resources-hello88-app-download-tutorial__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-hello88-app-download-tutorial__hero-section {
  background: linear-gradient(135deg, #001F3F 0%, #FFD700 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-hello88-app-download-tutorial__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
}

.page-resources-hello88-app-download-tutorial__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-hello88-app-download-tutorial__hero-image {
  max-width: 70%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.page-resources-hello88-app-download-tutorial__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-hello88-app-download-tutorial__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-resources-hello88-app-download-tutorial__btn--primary {
  background-color: #FFD700;
  color: #001F3F;
  border: 2px solid #FFD700;
}

.page-resources-hello88-app-download-tutorial__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-hello88-app-download-tutorial__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-resources-hello88-app-download-tutorial__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.page-resources-hello88-app-download-tutorial__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-resources-hello88-app-download-tutorial__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-resources-hello88-app-download-tutorial__section:nth-of-type(even) {
  background-color: #f1f1f1;
}

.page-resources-hello88-app-download-tutorial__section-title {
  font-size: 2.2em;
  color: #001F3F;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-hello88-app-download-tutorial__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555;
}

.page-resources-hello88-app-download-tutorial__sub-title {
  font-size: 1.8em;
  color: #001F3F;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
}

.page-resources-hello88-app-download-tutorial__platform-selection {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-resources-hello88-app-download-tutorial__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-hello88-app-download-tutorial__step-list li {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.page-resources-hello88-app-download-tutorial__step-list li:hover {
  transform: translateY(-5px);
}

.page-resources-hello88-app-download-tutorial__step-list li strong {
  color: #001F3F;
  font-size: 1.2em;
  display: block;
  margin-bottom: 10px;
}

.page-resources-hello88-app-download-tutorial__step-list li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-hello88-app-download-tutorial__step-list li a:hover {
  text-decoration: underline;
}

.page-resources-hello88-app-download-tutorial__qr-code {
  display: block;
  max-width: 200px;
  height: auto;
  margin: 20px auto;
  border: 5px solid #001F3F;
  border-radius: 10px;
}

.page-resources-hello88-app-download-tutorial__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-hello88-app-download-tutorial__grid-item {
  background-color: #fdfdfd;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.page-resources-hello88-app-download-tutorial__grid-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-hello88-app-download-tutorial__grid-item h3 {
  color: #001F3F;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-resources-hello88-app-download-tutorial__grid-item p {
  color: #666;
  margin-bottom: 20px;
}

.page-resources-hello88-app-download-tutorial__installation-img,
.page-resources-hello88-app-download-tutorial__benefit-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-hello88-app-download-tutorial__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hello88-app-download-tutorial__benefit-item {
  background-color: #fdfdfd;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.page-resources-hello88-app-download-tutorial__benefit-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-resources-hello88-app-download-tutorial__benefit-item h3 {
  color: #001F3F;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-resources-hello88-app-download-tutorial__benefit-item p {
  color: #666;
}

.page-resources-hello88-app-download-tutorial__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-resources-hello88-app-download-tutorial__faq-list {
  margin-top: 40px;
}

.page-resources-hello88-app-download-tutorial__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-resources-hello88-app-download-tutorial__faq-question {
  font-size: 1.25em;
  color: #001F3F;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-hello88-app-download-tutorial__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-hello88-app-download-tutorial__faq-item.active .page-resources-hello88-app-download-tutorial__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-hello88-app-download-tutorial__faq-answer {
  font-size: 1em;
  color: #555;
  margin-top: 15px;
  display: none;
}

.page-resources-hello88-app-download-tutorial__faq-item.active .page-resources-hello88-app-download-tutorial__faq-answer {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-hello88-app-download-tutorial__hero-title {
    font-size: 2.2em;
  }
  .page-resources-hello88-app-download-tutorial__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-hello88-app-download-tutorial__section-title {
    font-size: 1.8em;
  }
  .page-resources-hello88-app-download-tutorial__sub-title {
    font-size: 1.5em;
  }
  .page-resources-hello88-app-download-tutorial__hero-image {
    max-width: 85%;
  }
}

@media (max-width: 768px) {
  .page-resources-hello88-app-download-tutorial__hero-section {
    padding: 60px 0;
  }
  .page-resources-hello88-app-download-tutorial__hero-title {
    font-size: 1.8em;
  }
  .page-resources-hello88-app-download-tutorial__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-hello88-app-download-tutorial__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-hello88-app-download-tutorial__section {
    padding: 40px 0;
  }
  .page-resources-hello88-app-download-tutorial__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-resources-hello88-app-download-tutorial__hero-image {
    max-width: 95%;
  }
  .page-resources-hello88-app-download-tutorial__grid,
  .page-resources-hello88-app-download-tutorial__benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-hello88-app-download-tutorial__hero-section {
    padding: 40px 0;
  }
  .page-resources-hello88-app-download-tutorial__hero-title {
    font-size: 1.5em;
  }
  .page-resources-hello88-app-download-tutorial__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 90%;
  }
  .page-resources-hello88-app-download-tutorial__section-title {
    font-size: 1.5em;
  }
  .page-resources-hello88-app-download-tutorial__sub-title {
    font-size: 1.3em;
  }
  .page-resources-hello88-app-download-tutorial__step-list li,
  .page-resources-hello88-app-download-tutorial__grid-item,
  .page-resources-hello88-app-download-tutorial__benefit-item,
  .page-resources-hello88-app-download-tutorial__faq-item {
    padding: 15px;
  }
  .page-resources-hello88-app-download-tutorial__qr-code {
    max-width: 150px;
  }
}