:root {
  --primary-color: #FF4500;
  --secondary-color: #FFD700;
  --dark-bg: #0d0d0d; /* Assuming a dark body background from shared.css */
  --light-text: #ffffff;
  --dark-text: #333333;
  --gray-bg: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-slot-app-download-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark-text); /* Default text color for light sections */
  background-color: var(--gray-bg); /* Use a light background for main content area for contrast */
}

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

.page-slot-app-download-guide__container--padding-top {
    padding-top: 120px; /* Desktop: Adjust for fixed header */
}

.page-slot-app-download-guide__main-title {
  font-size: 38px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-slot-app-download-guide__section-title {
  font-size: 30px;
  font-weight: bold;
  color: var(--dark-text);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
}

.page-slot-app-download-guide__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-slot-app-download-guide__sub-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slot-app-download-guide__text-block {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.page-slot-app-download-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--primary-color), #E63900);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-slot-app-download-guide__cta-button:hover {
  background: linear-gradient(135deg, #E63900, var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-slot-app-download-guide__cta-button--secondary {
  background: var(--light-text);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.page-slot-app-download-guide__cta-button--secondary:hover {
  background: var(--primary-color);
  color: var(--light-text);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Card styles */
.page-slot-app-download-guide__criteria-card,
.page-slot-app-download-guide__promo-card,
.page-slot-app-download-guide__article-card {
  background: var(--light-text);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-app-download-guide__criteria-card:hover,
.page-slot-app-download-guide__promo-card:hover,
.page-slot-app-download-guide__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-slot-app-download-guide__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  max-width: 100%; /* Ensure responsive */
  height: auto; /* Ensure responsive */
  display: block; /* Ensure responsive */
}

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

.page-slot-app-download-guide__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  max-width: 100%; /* Ensure responsive */
  height: auto; /* Ensure responsive */
  display: block; /* Ensure responsive */
}

.page-slot-app-download-guide__article-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.page-slot-app-download-guide__article-title a {
  color: var(--dark-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-app-download-guide__article-title a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.page-slot-app-download-guide__article-summary {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.page-slot-app-download-guide__read-more-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.page-slot-app-download-guide__read-more-button:hover {
  background-color: #E63900;
}

/* FAQ Section */
.page-slot-app-download-guide__faq-section {
  padding: 50px 0;
  background-color: var(--gray-bg);
}

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

.page-slot-app-download-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-slot-app-download-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-slot-app-download-guide__faq-item.active .page-slot-app-download-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-slot-app-download-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-slot-app-download-guide__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-slot-app-download-guide__faq-question:active {
  background: #eeeeee;
}

.page-slot-app-download-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--dark-text);
}

.page-slot-app-download-guide__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-slot-app-download-guide__faq-item.active .page-slot-app-download-guide__faq-toggle {
  color: var(--primary-color);
  transform: rotate(45deg); /* Change + to X or rotate for - */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-app-download-guide__main-title {
    font-size: 32px;
  }
  .page-slot-app-download-guide__section-title {
    font-size: 26px;
  }
  .page-slot-app-download-guide__sub-title {
    font-size: 20px;
  }
  .page-slot-app-download-guide__text-block {
    font-size: 15px;
  }
  .page-slot-app-download-guide__promo-grid,
  .page-slot-app-download-guide__article-list {
    gap: 20px;
  }
  .page-slot-app-download-guide__promo-card,
  .page-slot-app-download-guide__article-card {
    padding: 25px;
  }
  .page-slot-app-download-guide__promo-image,
  .page-slot-app-download-guide__article-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-slot-app-download-guide__container {
    padding: 20px 15px;
  }
  .page-slot-app-download-guide__container--padding-top {
      padding-top: 100px !important; /* Mobile: Adjust for fixed header */
  }
  .page-slot-app-download-guide__main-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .page-slot-app-download-guide__section-title {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-slot-app-download-guide__sub-title {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-slot-app-download-guide__text-block {
    font-size: 14px;
  }
  .page-slot-app-download-guide__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .page-slot-app-download-guide__promo-grid,
  .page-slot-app-download-guide__article-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-slot-app-download-guide__promo-card,
  .page-slot-app-download-guide__article-card {
    padding: 20px;
    margin-bottom: 15px;
  }
  .page-slot-app-download-guide__promo-image,
  .page-slot-app-download-guide__article-image {
    height: 160px;
  }
  .page-slot-app-download-guide__article-title {
    font-size: 18px;
  }
  .page-slot-app-download-guide__article-summary {
    font-size: 13px;
  }
  .page-slot-app-download-guide__read-more-button {
    padding: 8px 15px;
    font-size: 13px;
  }

  /* FAQ Mobile */
  .page-slot-app-download-guide__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-slot-app-download-guide__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  
  .page-slot-app-download-guide__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  
  .page-slot-app-download-guide__faq-answer {
    padding: 0 15px;
  }
  
  .page-slot-app-download-guide__faq-item.active .page-slot-app-download-guide__faq-answer {
    padding: 15px !important;
  }

  /* Mobile image responsive force */
  .page-slot-app-download-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-slot-app-download-guide__intro-section,
  .page-slot-app-download-guide__overview-section,
  .page-slot-app-download-guide__criteria-section,
  .page-slot-app-download-guide__download-guide-section,
  .page-slot-app-download-guide__promotions-section,
  .page-slot-app-download-guide__news-tips-section,
  .page-slot-app-download-guide__faq-section,
  .page-slot-app-download-guide__container,
  .page-slot-app-download-guide__criteria-card,
  .page-slot-app-download-guide__promo-card,
  .page-slot-app-download-guide__article-card,
  .page-slot-app-download-guide__guide-step {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}