.page-download-process-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Ensuring body background is dark as per shared.css */
}

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

.page-download-process-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-download-process-guide__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 30px;
}

.page-download-process-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  text-shadow: 0 0 10px rgba(38, 169, 224, 0.5);
}

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

.page-download-process-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  opacity: 0.2;
  z-index: 0;
}

.page-download-process-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px); /* Subtle blur for background image */
}

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

.page-download-process-guide__cta-buttons--center {
  margin-top: 40px;
}

.page-download-process-guide__btn-primary,
.page-download-process-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;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

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

.page-download-process-guide__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-download-process-guide__introduction-section,
.page-download-process-guide__guide-section,
.page-download-process-guide__notes-section,
.page-download-process-guide__games-section,
.page-download-process-guide__faq-section {
  padding: 80px 0;
}

.page-download-process-guide__introduction-section,
.page-download-process-guide__notes-section,
.page-download-process-guide__games-section,
.page-download-process-guide__faq-section {
  background-color: #ffffff;
  color: #333333; /* Dark text for light background */
}

.page-download-process-guide__why-download-section,
.page-download-process-guide__troubleshooting-section,
.page-download-process-guide__conclusion-section {
  background-color: #0d0d0d; /* Slightly lighter dark background */
  color: #ffffff;
}

.page-download-process-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-download-process-guide__text-block strong {
  color: #26A9E0;
}

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

.page-download-process-guide__feature-card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.page-download-process-guide__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-download-process-guide__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-download-process-guide__step-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.page-download-process-guide__step-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
}

.page-download-process-guide__step-content {
  flex: 1;
}

.page-download-process-guide__step-title {
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-download-process-guide__step-description {
  font-size: 1.1em;
  color: inherit;
}

.page-download-process-guide__step-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 8px;
  margin-top: 20px;
  display: block;
  object-fit: cover;
}

.page-download-process-guide__checklist {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-download-process-guide__checklist .page-download-process-guide__list-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-download-process-guide__checklist .page-download-process-guide__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #26A9E0;
  font-size: 1.5em;
  font-weight: bold;
  top: -5px;
}

.page-download-process-guide__section-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  margin: 40px auto 0;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.page-download-process-guide__issue-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-process-guide__card {
  background-color: #ffffff;
  color: #333333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-download-process-guide__card-title {
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-download-process-guide__card-list {
  list-style: disc;
  margin-left: 20px;
}

.page-download-process-guide__card-list .page-download-process-guide__list-item {
  margin-bottom: 10px;
}

.page-download-process-guide__game-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-download-process-guide__game-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-download-process-guide__game-title {
  font-size: 1.4em;
  margin: 20px 15px 10px;
}

.page-download-process-guide__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-download-process-guide__game-title a:hover {
  text-decoration: underline;
}

.page-download-process-guide__game-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px 20px;
}

.page-download-process-guide__faq-list {
  margin-top: 40px;
}

.page-download-process-guide__faq-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-download-process-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  background-color: #e8e8e8;
  border-bottom: 1px solid #dddddd;
  list-style: none; /* For details tag */
}

.page-download-process-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details tag */
}

.page-download-process-guide__faq-qtext {
  flex-grow: 1;
  color: #26A9E0;
}

.page-download-process-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-download-process-guide__faq-item[open] .page-download-process-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-download-process-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1.1em;
  color: #555555;
  background-color: #ffffff;
  border-top: 1px solid #eeeeee;
}

.page-download-process-guide__conclusion-section .page-download-process-guide__section-title {
  color: #26A9E0;
}

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

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

@media (max-width: 768px) {
  .page-download-process-guide__hero-section {
    min-height: 60vh;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-download-process-guide__hero-title {
    font-size: 2.5em;
  }

  .page-download-process-guide__hero-description {
    font-size: 1em;
  }

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

  .page-download-process-guide__btn-primary,
  .page-download-process-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-download-process-guide__introduction-section,
  .page-download-process-guide__why-download-section,
  .page-download-process-guide__guide-section,
  .page-download-process-guide__notes-section,
  .page-download-process-guide__troubleshooting-section,
  .page-download-process-guide__games-section,
  .page-download-process-guide__faq-section,
  .page-download-process-guide__conclusion-section {
    padding: 50px 0;
  }

  .page-download-process-guide__container {
    padding: 0 15px;
  }

  .page-download-process-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-download-process-guide__text-block {
    font-size: 1em;
  }

  .page-download-process-guide__feature-grid,
  .page-download-process-guide__issue-cards,
  .page-download-process-guide__game-showcase {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-download-process-guide__feature-icon {
    width: 60px;
    height: 60px;
  }

  .page-download-process-guide__feature-title {
    font-size: 1.3em;
  }

  .page-download-process-guide__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .page-download-process-guide__step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.5em;
  }

  .page-download-process-guide__step-title {
    font-size: 1.5em;
  }

  .page-download-process-guide__step-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-download-process-guide__checklist .page-download-process-guide__list-item {
    font-size: 1em;
  }

  .page-download-process-guide__section-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-download-process-guide__game-image {
    height: 180px;
  }

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

  .page-download-process-guide__faq-answer {
    padding: 15px 20px;
    font-size: 1em;
  }

  /* Ensure all images are responsive and do not overflow */
  .page-download-process-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-download-process-guide__section,
  .page-download-process-guide__card,
  .page-download-process-guide__container,
  .page-download-process-guide__hero-section,
  .page-download-process-guide__hero-image-wrapper,
  .page-download-process-guide__feature-grid,
  .page-download-process-guide__issue-cards,
  .page-download-process-guide__game-showcase,
  .page-download-process-guide__cta-buttons,
  .page-download-process-guide__guide-steps,
  .page-download-process-guide__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-download-process-guide__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-download-process-guide__cta-buttons a {
    max-width: 100%;
    width: 100%;
  }

  /* Content area image CSS dimensions lower bound */
  .page-download-process-guide img:not(.page-download-process-guide__feature-icon) {
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-download-process-guide__feature-icon {
    min-width: 60px !important;
    min-height: 60px !important;
  }
}

@media (max-width: 480px) {
  .page-download-process-guide__hero-title {
    font-size: 2em;
  }

  .page-download-process-guide__section-title {
    font-size: 1.5em;
  }

  .page-download-process-guide__step-title {
    font-size: 1.3em;
  }

  .page-download-process-guide__feature-title {
    font-size: 1.2em;
  }

  .page-download-process-guide__game-image {
    height: 150px;
  }
}