.page-app-download-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Dark body background #121212, so light text */
  background-color: transparent; /* Body background from shared.css */
}

.page-app-download-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-app-download-guide__hero-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding-top: 0; /* Assuming shared.css handles body padding-top */
}

.page-app-download-guide__hero-content {
  flex: 1;
  padding-right: 40px;
  text-align: left;
}

.page-app-download-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.2;
}

.page-app-download-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-app-download-guide__cta-buttons {
  display: flex;
  gap: 20px;
}

.page-app-download-guide__btn-primary,
.page-app-download-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-app-download-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-app-download-guide__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-app-download-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-app-download-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-app-download-guide__hero-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-app-download-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

/* General Section Styling */
.page-app-download-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-app-download-guide__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.page-app-download-guide__features-section {
  background-color: #121212;
  padding: 80px 0;
}

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

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

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

.page-app-download-guide__feature-icon {
  width: 250px;
  height: 187px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-guide__feature-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-app-download-guide__feature-description {
  font-size: 1em;
  color: #b0b0b0;
}

.page-app-download-guide__feature-description a {
  color: #26A9E0;
  text-decoration: none;
}

.page-app-download-guide__feature-description a:hover {
  text-decoration: underline;
}

/* Guide Section */
.page-app-download-guide__guide-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.page-app-download-guide__guide-steps {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.page-app-download-guide__guide-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-app-download-guide__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-app-download-guide__steps-list {
  flex: 1;
  list-style: none;
  padding: 0;
}

.page-app-download-guide__step-item {
  background-color: #222222;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-app-download-guide__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-app-download-guide__step-item p {
  color: #e0e0e0;
}

.page-app-download-guide__step-item a {
  color: #EA7C07;
  text-decoration: none;
}

.page-app-download-guide__step-item a:hover {
  text-decoration: underline;
}

/* Game Showcase Section */
.page-app-download-guide__game-showcase-section {
  background-color: #121212;
  padding: 80px 0;
}

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

.page-app-download-guide__game-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-app-download-guide__game-card:hover {
  transform: translateY(-5px);
}

.page-app-download-guide__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-app-download-guide__game-title {
  padding: 20px;
  font-size: 1.3em;
  color: #ffffff;
  text-align: center;
}

.page-app-download-guide__game-title a {
  color: #ffffff;
  text-decoration: none;
}

.page-app-download-guide__game-title a:hover {
  color: #26A9E0;
  text-decoration: underline;
}

/* FAQ Section */
.page-app-download-guide__faq-section {
  background-color: #1a1a1a;
  padding: 80px 0;
}

.page-app-download-guide__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-app-download-guide__faq-item {
  background-color: #222222;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-app-download-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  color: #ffffff;
  cursor: pointer;
  background-color: #2a2a2a;
  transition: background-color 0.3s ease;
}

.page-app-download-guide__faq-question:hover {
  background-color: #333333;
}

.page-app-download-guide__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-app-download-guide__faq-item.active .page-app-download-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-app-download-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-app-download-guide__faq-item.active .page-app-download-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 20px;
}

.page-app-download-guide__faq-answer p {
  margin: 0;
}

.page-app-download-guide__faq-answer a {
  color: #EA7C07;
  text-decoration: none;
}

.page-app-download-guide__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Bottom Section */
.page-app-download-guide__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
}

.page-app-download-guide__cta-bottom-section .page-app-download-guide__container {
  background-color: #26A9E0;
  padding: 60px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-app-download-guide__cta-bottom-section .page-app-download-guide__section-title {
  color: #ffffff;
  margin-bottom: 20px;
  padding-top: 0;
}

.page-app-download-guide__cta-bottom-section .page-app-download-guide__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-app-download-guide__cta-bottom-section .page-app-download-guide__cta-buttons {
  justify-content: center;
}

.page-app-download-guide__cta-bottom-section .page-app-download-guide__btn-primary {
  background-color: #EA7C07;
  border-color: #EA7C07;
}

.page-app-download-guide__cta-bottom-section .page-app-download-guide__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

.page-app-download-guide__cta-bottom-section .page-app-download-guide__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border-color: #ffffff;
}

.page-app-download-guide__cta-bottom-section .page-app-download-guide__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #26A9E0;
  border-color: #f0f0f0;
}

/* Universal image styling */
.page-app-download-guide img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

  .page-app-download-guide__features-grid,
  .page-app-download-guide__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-app-download-guide__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }

  .page-app-download-guide__hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .page-app-download-guide__cta-buttons {
    justify-content: center;
  }

  .page-app-download-guide__guide-steps {
    flex-direction: column;
  }

  .page-app-download-guide__guide-image-wrapper {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-app-download-guide__container {
    padding: 0 15px;
  }

  /* HERO 主图区域 */
  .page-app-download-guide__hero-section {
    padding: 40px 0;
    padding-top: 0; /* Assuming shared.css handles body padding-top, avoid double padding */
  }
  .page-app-download-guide__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-app-download-guide__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  /* 产品展示图区域 */
  .page-app-download-guide__games-grid {
    grid-template-columns: 1fr; /* Single column for games */
    gap: 20px;
  }
  .page-app-download-guide__game-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-app-download-guide__game-image {
    height: 180px;
  }

  /* 通用图片与容器 */
  .page-app-download-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-app-download-guide__section,
  .page-app-download-guide__card,
  .page-app-download-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-app-download-guide__hero-image-wrapper {
    padding: 0 15px;
  }
  .page-app-download-guide__guide-image-wrapper {
    padding: 0 15px;
  }

  /* 按钮与按钮容器 */
  .page-app-download-guide__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-app-download-guide__btn-primary,
  .page-app-download-guide__btn-secondary,
  .page-app-download-guide a[class*="button"],
  .page-app-download-guide a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 其他内容模块 */
  .page-app-download-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-app-download-guide__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-app-download-guide__features-section,
  .page-app-download-guide__guide-section,
  .page-app-download-guide__game-showcase-section,
  .page-app-download-guide__faq-section,
  .page-app-download-guide__cta-bottom-section {
    padding: 50px 0;
  }
  .page-app-download-guide__feature-card,
  .page-app-download-guide__step-item,
  .page-app-download-guide__faq-item {
    padding: 20px;
  }
  .page-app-download-guide__feature-icon {
    width: 100%;
    height: auto;
  }
  .page-app-download-guide__faq-question {
    font-size: 1.1em;
  }
  .page-app-download-guide__faq-answer {
    padding: 0 15px;
  }
  .page-app-download-guide__faq-item.active .page-app-download-guide__faq-answer {
    padding: 15px;
  }
  .page-app-download-guide__cta-bottom-section .page-app-download-guide__container {
    padding: 40px 20px;
  }
}