.page-resources-typhu88-app-download-guide {
  --primary-color: #0A0F18;
  --secondary-color: #FFD700;
  --accent-color: #E53935;
  --text-light: #F8F8F8;
  --text-dark: #0A0F18;
  --bg-dark: #0A0F18;
  --bg-light: #F8F8F8;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--bg-dark);
}

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

.page-resources-typhu88-app-download-guide__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a2f3a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid var(--secondary-color);
}

.page-resources-typhu88-app-download-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric_shapes,dark_gold_texture]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-typhu88-app-download-guide__hero-section > * {
  position: relative;
  z-index: 1;
}

.page-resources-typhu88-app-download-guide__main-title {
  font-size: 3.5em;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-typhu88-app-download-guide__subtitle {
  font-size: 1.5em;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-resources-typhu88-app-download-guide__button--primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border: 2px solid var(--secondary-color);
}

.page-resources-typhu88-app-download-guide__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-resources-typhu88-app-download-guide__button--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-resources-typhu88-app-download-guide__button--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-resources-typhu88-app-download-guide__section {
  padding: 60px 0;
  background-color: var(--primary-color);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-resources-typhu88-app-download-guide__section:nth-of-type(even) {
  background-color: #1a1f28; /* Slightly lighter dark background for contrast */
}

.page-resources-typhu88-app-download-guide__section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-typhu88-app-download-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

.page-resources-typhu88-app-download-guide__section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-resources-typhu88-app-download-guide__section h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid var(--secondary-color);
  padding-left: 15px;
}

.page-resources-typhu88-app-download-guide__list, .page-resources-typhu88-app-download-guide__ordered-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-typhu88-app-download-guide__list li, .page-resources-typhu88-app-download-guide__ordered-list li {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
}

.page-resources-typhu88-app-download-guide__list li::before {
  content: '✔';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-resources-typhu88-app-download-guide__ordered-list li {
  counter-increment: list-counter;
}

.page-resources-typhu88-app-download-guide__ordered-list li::before {
  content: counter(list-counter) ". ";
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-resources-typhu88-app-download-guide__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-typhu88-app-download-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--secondary-color);
}

.page-resources-typhu88-app-download-guide__section a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-typhu88-app-download-guide__section a:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-resources-typhu88-app-download-guide__feature-item {
  background-color: #1a1f28;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-typhu88-app-download-guide__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-typhu88-app-download-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--secondary-color));
}

.page-resources-typhu88-app-download-guide__feature-item h3 {
  color: var(--secondary-color);
  font-size: 1.4em;
  margin-bottom: 15px;
  border-left: none;
  padding-left: 0;
}

.page-resources-typhu88-app-download-guide__feature-item p {
  font-size: 1em;
  color: var(--text-light);
}

.page-resources-typhu88-app-download-guide__faq-list {
  margin-top: 40px;
}

.page-resources-typhu88-app-download-guide__faq-item {
  background-color: #1a1f28;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-typhu88-app-download-guide__faq-question {
  color: var(--secondary-color);
  font-size: 1.3em;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  border-left: 4px solid transparent;
}

.page-resources-typhu88-app-download-guide__faq-question:hover {
  background-color: #2a2f3a;
}

.page-resources-typhu88-app-download-guide__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.page-resources-typhu88-app-download-guide__faq-item.active .page-resources-typhu88-app-download-guide__faq-question {
  border-left-color: var(--secondary-color);
}

.page-resources-typhu88-app-download-guide__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-resources-typhu88-app-download-guide__faq-item.active .page-resources-typhu88-app-download-guide__faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-bottom: 20px;
}

.page-resources-typhu88-app-download-guide__faq-answer p {
  color: var(--text-light);
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 0;
}

.page-resources-typhu88-app-download-guide__section--cta-final {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, var(--primary-color), #2a2f3a);
}

.page-resources-typhu88-app-download-guide__disclaimer {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-typhu88-app-download-guide__main-title {
    font-size: 2.5em;
  }

  .page-resources-typhu88-app-download-guide__subtitle {
    font-size: 1.2em;
  }

  .page-resources-typhu88-app-download-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-typhu88-app-download-guide__button {
    width: 80%;
    margin: 0 auto;
  }

  .page-resources-typhu88-app-download-guide__section-title {
    font-size: 2em;
  }

  .page-resources-typhu88-app-download-guide__section p,
  .page-resources-typhu88-app-download-guide__list li,
  .page-resources-typhu88-app-download-guide__ordered-list li {
    font-size: 1em;
  }

  .page-resources-typhu88-app-download-guide__feature-item {
    padding: 20px;
  }

  .page-resources-typhu88-app-download-guide__feature-icon {
    width: 50px;
    height: 50px;
  }

  .page-resources-typhu88-app-download-guide__feature-item h3 {
    font-size: 1.2em;
  }

  .page-resources-typhu88-app-download-guide__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-resources-typhu88-app-download-guide__faq-item.active .page-resources-typhu88-app-download-guide__faq-answer {
    max-height: 300px; /* Adjust for smaller screens */
  }
}

@media (max-width: 480px) {
  .page-resources-typhu88-app-download-guide__hero-section {
    padding: 60px 0;
  }

  .page-resources-typhu88-app-download-guide__main-title {
    font-size: 2em;
  }

  .page-resources-typhu88-app-download-guide__subtitle {
    font-size: 1em;
  }

  .page-resources-typhu88-app-download-guide__button {
    width: 90%;
  }

  .page-resources-typhu88-app-download-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-typhu88-app-download-guide__section p,
  .page-resources-typhu88-app-download-guide__list li,
  .page-resources-typhu88-app-download-guide__ordered-list li {
    font-size: 0.95em;
  }

  .page-resources-typhu88-app-download-guide__feature-item h3 {
    font-size: 1.1em;
  }

  .page-resources-typhu88-app-download-guide__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
}