/* style/resources-rrr88-app-download-tutorial.css */
.page-resources-rrr88-app-download-tutorial {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F8F8F8; /* Light text on dark background for general sections */
  background-color: #0D1B2A; /* Main background color */
}

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

.page-resources-rrr88-app-download-tutorial__hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #3a475a 100%); /* Darker gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #F8F8F8;
}

.page-resources-rrr88-app-download-tutorial__hero-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-rrr88-app-download-tutorial__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-rrr88-app-download-tutorial__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 0 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-rrr88-app-download-tutorial__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0D1B2A; /* Dark text on gold */
  border: 2px solid #FFD700;
}

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

.page-resources-rrr88-app-download-tutorial__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-resources-rrr88-app-download-tutorial__btn--secondary:hover {
  background-color: #FFD700;
  color: #0D1B2A;
  transform: translateY(-2px);
}

.page-resources-rrr88-app-download-tutorial__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-rrr88-app-download-tutorial__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #FFD700; /* Gold for section titles */
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-rrr88-app-download-tutorial__description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #CCCCCC;
}

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

.page-resources-rrr88-app-download-tutorial__benefit-item,
.page-resources-rrr88-app-download-tutorial__feature-item {
  background-color: #1A2B3E; /* Slightly lighter dark for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-rrr88-app-download-tutorial__benefit-item:hover,
.page-resources-rrr88-app-download-tutorial__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-resources-rrr88-app-download-tutorial__benefit-icon,
.page-resources-rrr88-app-download-tutorial__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-resources-rrr88-app-download-tutorial__benefit-item h3,
.page-resources-rrr88-app-download-tutorial__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-resources-rrr88-app-download-tutorial__benefit-item p,
.page-resources-rrr88-app-download-tutorial__feature-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-resources-rrr88-app-download-tutorial__platform-guide {
  text-align: left;
  margin-bottom: 60px;
}

.page-resources-rrr88-app-download-tutorial__platform-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-rrr88-app-download-tutorial__step-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.page-resources-rrr88-app-download-tutorial__step-item {
  display: flex;
  align-items: flex-start;
  background-color: #1A2B3E;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-rrr88-app-download-tutorial__step-number {
  min-width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0D1B2A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-right: 25px;
  flex-shrink: 0;
}

.page-resources-rrr88-app-download-tutorial__step-content h4 {
  color: #FFD700;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-rrr88-app-download-tutorial__step-content p {
  color: #E0E0E0;
  margin-bottom: 15px;
}

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

.page-resources-rrr88-app-download-tutorial__step-content a:hover {
  text-decoration: underline;
}

.page-resources-rrr88-app-download-tutorial__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-rrr88-app-download-tutorial__faq-list {
  text-align: left;
  margin-top: 40px;
}

.page-resources-rrr88-app-download-tutorial__faq-item {
  background-color: #1A2B3E;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-rrr88-app-download-tutorial__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-rrr88-app-download-tutorial__faq-item p {
  color: #E0E0E0;
}

.page-resources-rrr88-app-download-tutorial__section--cta {
  background-color: #1A2B3E; /* Darker background for CTA */
  padding: 80px 0;
}

.page-resources-rrr88-app-download-tutorial__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-rrr88-app-download-tutorial__section--cta .page-resources-rrr88-app-download-tutorial__section-title {
  color: #FFD700;
}

.page-resources-rrr88-app-download-tutorial__section--cta .page-resources-rrr88-app-download-tutorial__description {
  color: #F8F8F8;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-rrr88-app-download-tutorial__hero-title {
    font-size: 2.8em;
  }

  .page-resources-rrr88-app-download-tutorial__section-title {
    font-size: 2em;
  }

  .page-resources-rrr88-app-download-tutorial__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-resources-rrr88-app-download-tutorial__step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-resources-rrr88-app-download-tutorial__hero {
    padding: 80px 0;
  }

  .page-resources-rrr88-app-download-tutorial__hero-title {
    font-size: 2.2em;
  }

  .page-resources-rrr88-app-download-tutorial__hero-subtitle {
    font-size: 1.1em;
  }

  .page-resources-rrr88-app-download-tutorial__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 10px 5px;
  }

  .page-resources-rrr88-app-download-tutorial__grid {
    grid-template-columns: 1fr;
  }

  .page-resources-rrr88-app-download-tutorial__section-title {
    font-size: 1.8em;
  }

  .page-resources-rrr88-app-download-tutorial__platform-title {
    font-size: 1.6em;
  }

  .page-resources-rrr88-app-download-tutorial__step-content h4 {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-resources-rrr88-app-download-tutorial__hero-title {
    font-size: 1.8em;
  }

  .page-resources-rrr88-app-download-tutorial__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-rrr88-app-download-tutorial__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .page-resources-rrr88-app-download-tutorial__section-title {
    font-size: 1.6em;
  }

  .page-resources-rrr88-app-download-tutorial__description {
    font-size: 0.95em;
  }

  .page-resources-rrr88-app-download-tutorial__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }
}