.page-resources-m88-app-download-tutorial {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e0e0e0; /* Default text color for dark background */
  background-color: #0A1931; /* Main background color */
}

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

.page-resources-m88-app-download-tutorial__container--center {
  text-align: center;
}

.page-resources-m88-app-download-tutorial__hero {
  background: linear-gradient(135deg, #0A1931, #2c3e50); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-resources-m88-app-download-tutorial__hero > * {
  position: relative;
  z-index: 1;
}

.page-resources-m88-app-download-tutorial__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-m88-app-download-tutorial__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.page-resources-m88-app-download-tutorial__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark text on gold */
}

.page-resources-m88-app-download-tutorial__button--primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-m88-app-download-tutorial__button--secondary {
  background-color: #0A1931; /* Dark button */
  color: #FFD700; /* Gold text on dark */
  border: 2px solid #FFD700;
}

.page-resources-m88-app-download-tutorial__button--secondary:hover {
  background-color: #1a3350; /* Slightly lighter dark on hover */
  transform: translateY(-2px);
}

.page-resources-m88-app-download-tutorial__button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-resources-m88-app-download-tutorial__content-section {
  padding: 60px 0;
}

.page-resources-m88-app-download-tutorial__content-section--alt-bg {
  background-color: #1a2a44; /* Slightly lighter dark background */
}

.page-resources-m88-app-download-tutorial__heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-m88-app-download-tutorial__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-m88-app-download-tutorial__heading--white {
  color: #ffffff;
}

.page-resources-m88-app-download-tutorial__subheading {
  font-size: 1.8em;
  color: #FFD700; /* Gold for subheadings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-m88-app-download-tutorial__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-resources-m88-app-download-tutorial__paragraph--white {
  color: #ffffff;
}

.page-resources-m88-app-download-tutorial__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-m88-app-download-tutorial__list li {
  background-color: #1a2a44;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-m88-app-download-tutorial__list li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-resources-m88-app-download-tutorial__numbered-list {
  list-style: none;
  counter-reset: tutorial-step;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-m88-app-download-tutorial__numbered-list li {
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  font-size: 1.1em;
  color: #e0e0e0;
}

.page-resources-m88-app-download-tutorial__numbered-list li::before {
  counter-increment: tutorial-step;
  content: counter(tutorial-step);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A1931;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-resources-m88-app-download-tutorial__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
}

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

.page-resources-m88-app-download-tutorial__list--grid li {
  display: block;
  padding: 25px;
  text-align: center;
}

.page-resources-m88-app-download-tutorial__list--grid li::before {
  display: none;
}

.page-resources-m88-app-download-tutorial__list-heading {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

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

.page-resources-m88-app-download-tutorial__faq-item {
  background-color: #1a2a44;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-m88-app-download-tutorial__faq-question {
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  color: #FFD700;
}

.page-resources-m88-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-m88-app-download-tutorial__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-m88-app-download-tutorial__faq-answer {
  font-size: 1em;
  color: #c0c0c0;
  display: none;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-resources-m88-app-download-tutorial__cta-section {
  background-color: #0A1931; /* Primary dark color */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  border-top: 5px solid #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-m88-app-download-tutorial__title {
    font-size: 2.5em;
  }

  .page-resources-m88-app-download-tutorial__subtitle {
    font-size: 1.2em;
  }

  .page-resources-m88-app-download-tutorial__heading {
    font-size: 2em;
  }

  .page-resources-m88-app-download-tutorial__subheading {
    font-size: 1.5em;
  }

  .page-resources-m88-app-download-tutorial__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-m88-app-download-tutorial__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-m88-app-download-tutorial__list--grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-m88-app-download-tutorial__title {
    font-size: 2em;
  }

  .page-resources-m88-app-download-tutorial__subtitle {
    font-size: 1em;
  }

  .page-resources-m88-app-download-tutorial__heading {
    font-size: 1.8em;
  }

  .page-resources-m88-app-download-tutorial__subheading {
    font-size: 1.3em;
  }

  .page-resources-m88-app-download-tutorial__button {
    width: 100%;
    max-width: 280px; /* Limit width for very small screens */
  }
}