/* style/resources-33win68-mobile-app-guide.css */

/* Variables */
:root {
  --page-primary-color: #1A202C;
  --page-accent-color: #FFD700;
  --page-text-light: #FFFFFF;
  --page-text-dark: #1A202C;
  --page-border-color: #333C4A;
  --page-shadow-color: rgba(0, 0, 0, 0.3);
}

.page-resources-33win68-mobile-app-guide {
  font-family: 'Arial', sans-serif;
  color: var(--page-text-light);
  background-color: var(--page-primary-color);
  line-height: 1.6;
}

.page-resources-33win68-mobile-app-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-33win68-mobile-app-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-33win68-mobile-app-guide__section--alt-bg {
  background-color: #2A313E; /* Slightly lighter dark background for contrast */
}

.page-resources-33win68-mobile-app-guide__section-title {
  font-size: 2.5em;
  color: var(--page-accent-color);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-resources-33win68-mobile-app-guide__hero {
  background: linear-gradient(135deg, var(--page-primary-color) 0%, #3a455a 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-33win68-mobile-app-guide__hero-title {
  font-size: 3.5em;
  color: var(--page-text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-33win68-mobile-app-guide__hero-subtitle {
  font-size: 1.3em;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-33win68-mobile-app-guide__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-resources-33win68-mobile-app-guide__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;
  box-shadow: 0 4px 15px var(--page-shadow-color);
}

.page-resources-33win68-mobile-app-guide__btn--primary {
  background-color: var(--page-accent-color);
  color: var(--page-text-dark);
  border: 2px solid var(--page-accent-color);
}

.page-resources-33win68-mobile-app-guide__btn--primary:hover {
  background-color: darken(var(--page-accent-color), 10%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--page-shadow-color);
}

.page-resources-33win68-mobile-app-guide__btn--secondary {
  background-color: transparent;
  color: var(--page-accent-color);
  border: 2px solid var(--page-accent-color);
}

.page-resources-33win68-mobile-app-guide__btn--secondary:hover {
  background-color: var(--page-accent-color);
  color: var(--page-text-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--page-shadow-color);
}

.page-resources-33win68-mobile-app-guide__hero-image-wrapper {
  margin-top: 50px;
}

.page-resources-33win68-mobile-app-guide__hero-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--page-shadow-color);
  object-fit: contain;
}

.page-resources-33win68-mobile-app-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-33win68-mobile-app-guide__feature-item {
  background-color: #2A313E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-resources-33win68-mobile-app-guide__feature-item:hover {
  transform: translateY(-5px);
}

.page-resources-33win68-mobile-app-guide__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-resources-33win68-mobile-app-guide__feature-title {
  font-size: 1.5em;
  color: var(--page-accent-color);
  margin-bottom: 15px;
}

.page-resources-33win68-mobile-app-guide__feature-item p {
  color: #CCCCCC;
}

.page-resources-33win68-mobile-app-guide__download-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 50px;
}

@media (min-width: 768px) {
  .page-resources-33win68-mobile-app-guide__download-guide {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-resources-33win68-mobile-app-guide__guide-item {
  background-color: var(--page-primary-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-resources-33win68-mobile-app-guide__guide-title {
  font-size: 2em;
  color: var(--page-accent-color);
  margin-bottom: 25px;
}

.page-resources-33win68-mobile-app-guide__step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-resources-33win68-mobile-app-guide__step-list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  color: #E0E0E0;
}

.page-resources-33win68-mobile-app-guide__step-list li strong {
  color: var(--page-accent-color);
}

.page-resources-33win68-mobile-app-guide__step-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--page-accent-color);
  color: var(--page-text-dark);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9em;
}

.page-resources-33win68-mobile-app-guide__step-list a {
  color: var(--page-accent-color);
  text-decoration: none;
}

.page-resources-33win68-mobile-app-guide__step-list a:hover {
  text-decoration: underline;
}

.page-resources-33win68-mobile-app-guide__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 20px;
  object-fit: contain;
}

.page-resources-33win68-mobile-app-guide__troubleshoot-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-resources-33win68-mobile-app-guide__troubleshoot-list li {
  background-color: var(--page-primary-color);
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-33win68-mobile-app-guide__troubleshoot-title {
  font-size: 1.6em;
  color: var(--page-accent-color);
  margin-bottom: 15px;
}

.page-resources-33win68-mobile-app-guide__troubleshoot-list p {
  color: #E0E0E0;
  margin-bottom: 10px;
}

.page-resources-33win68-mobile-app-guide__cta-section {
  background: linear-gradient(45deg, #FFD700 0%, #FFA500 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--page-text-dark);
}

.page-resources-33win68-mobile-app-guide__cta-title {
  font-size: 3em;
  color: var(--page-text-dark);
  margin-bottom: 20px;
}

.page-resources-33win68-mobile-app-guide__cta-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-33win68-mobile-app-guide__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-resources-33win68-mobile-app-guide__cta-actions .page-resources-33win68-mobile-app-guide__btn--primary {
  background-color: var(--page-primary-color);
  color: var(--page-accent-color);
  border: 2px solid var(--page-primary-color);
}

.page-resources-33win68-mobile-app-guide__cta-actions .page-resources-33win68-mobile-app-guide__btn--primary:hover {
  background-color: #333C4A;
  color: var(--page-accent-color);
}

.page-resources-33win68-mobile-app-guide__cta-actions .page-resources-33win68-mobile-app-guide__btn--secondary {
  background-color: transparent;
  color: var(--page-text-dark);
  border: 2px solid var(--page-text-dark);
}

.page-resources-33win68-mobile-app-guide__cta-actions .page-resources-33win68-mobile-app-guide__btn--secondary:hover {
  background-color: var(--page-text-dark);
  color: var(--page-accent-color);
}

.page-resources-33win68-mobile-app-guide__cta-image-wrapper {
    margin-top: 50px;
}

.page-resources-33win68-mobile-app-guide__cta-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    object-fit: contain;
}

.page-resources-33win68-mobile-app-guide__faq {
  margin-top: 40px;
  text-align: left;
}

.page-resources-33win68-mobile-app-guide__faq-item {
  background-color: var(--page-primary-color);
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-33win68-mobile-app-guide__faq-question {
  font-size: 1.4em;
  color: var(--page-accent-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-33win68-mobile-app-guide__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-33win68-mobile-app-guide__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-resources-33win68-mobile-app-guide__faq-answer {
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-resources-33win68-mobile-app-guide__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-33win68-mobile-app-guide__hero-title {
    font-size: 3em;
  }
  .page-resources-33win68-mobile-app-guide__section-title {
    font-size: 2em;
  }
  .page-resources-33win68-mobile-app-guide__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-resources-33win68-mobile-app-guide__hero-title {
    font-size: 2.5em;
  }
  .page-resources-33win68-mobile-app-guide__hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-33win68-mobile-app-guide__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-33win68-mobile-app-guide__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-resources-33win68-mobile-app-guide__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-33win68-mobile-app-guide__section {
    padding: 40px 0;
  }
  .page-resources-33win68-mobile-app-guide__section-title {
    font-size: 1.8em;
  }
  .page-resources-33win68-mobile-app-guide__cta-title {
    font-size: 2em;
  }
  .page-resources-33win68-mobile-app-guide__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-33win68-mobile-app-guide__hero-title {
    font-size: 2em;
  }
  .page-resources-33win68-mobile-app-guide__hero-subtitle {
    font-size: 1em;
  }
  .page-resources-33win68-mobile-app-guide__section-title {
    font-size: 1.5em;
  }
  .page-resources-33win68-mobile-app-guide__cta-title {
    font-size: 1.8em;
  }
  .page-resources-33win68-mobile-app-guide__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-33win68-mobile-app-guide__guide-item {
    padding: 25px;
  }
  .page-resources-33win68-mobile-app-guide__guide-title {
    font-size: 1.5em;
  }
  .page-resources-33win68-mobile-app-guide__troubleshoot-title {
    font-size: 1.3em;
  }
  .page-resources-33win68-mobile-app-guide__faq-question {
    font-size: 1.2em;
  }
}