/* style/app-download-guide.css */
.page-app-download-guide {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-app-download-guide__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004488 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-guide__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-app-download-guide__hero-section > div {
  position: relative;
  z-index: 1;
}

.page-app-download-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Accent color for title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-app-download-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.page-app-download-guide__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-app-download-guide__btn--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Main color for text */
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
}

.page-app-download-guide__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.6);
}

.page-app-download-guide__btn--secondary {
  background-color: #004488; /* Darker main color */
  color: #fff;
  border: 2px solid #FFCC00;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-guide__btn--secondary:hover {
  background-color: #0055aa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-app-download-guide__btn--download {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.page-app-download-guide__btn--download:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.5);
}

.page-app-download-guide__section-title {
  font-size: 2.5em;
  color: #003366; /* Main color */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-app-download-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Accent color */
  border-radius: 2px;
}

.page-app-download-guide__intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -30px auto 60px auto;
  color: #555;
}

.page-app-download-guide__why-download,
.page-app-download-guide__download-guide,
.page-app-download-guide__register-login,
.page-app-download-guide__popular-games,
.page-app-download-guide__promotions,
.page-app-download-guide__security-support,
.page-app-download-guide__faq,
.page-app-download-guide__conclusion-cta {
  padding: 80px 0;
}

.page-app-download-guide__why-download,
.page-app-download-guide__register-login,
.page-app-download-guide__security-support {
  background-color: #f0f4f8; /* Light background for contrast */
}

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

.page-app-download-guide__feature-item,
.page-app-download-guide__game-card,
.page-app-download-guide__promo-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-app-download-guide__feature-item:hover,
.page-app-download-guide__game-card:hover,
.page-app-download-guide__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.page-app-download-guide__feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

.page-app-download-guide__feature-title,
.page-app-download-guide__game-title,
.page-app-download-guide__promo-title {
  font-size: 1.5em;
  color: #003366; /* Main color */
  margin-bottom: 15px;
}

.page-app-download-guide__feature-text,
.page-app-download-guide__game-description,
.page-app-download-guide__promo-description {
  font-size: 1em;
  color: #666;
}

.page-app-download-guide__platform-section {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-app-download-guide__platform-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.page-app-download-guide__platform-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.page-app-download-guide__step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  text-align: left;
  max-width: 700px;
  width: 100%;
}

.page-app-download-guide__step-list li {
  background-color: #e6f0fa;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #222;
  position: relative;
  padding-left: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-app-download-guide__step-list li strong {
  color: #003366;
}

.page-app-download-guide__step-list li::before {
  content: counters(step-counter, ".");
  counter-increment: step-counter;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFCC00;
  color: #003366;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-app-download-guide__action-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.page-app-download-guide__device-image {
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-app-download-guide__process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-app-download-guide__process-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-app-download-guide__process-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 25px;
}

.page-app-download-guide__process-item .page-app-download-guide__step-list {
  counter-reset: process-step-counter;
  width: 100%;
  margin-bottom: 30px;
}

.page-app-download-guide__process-item .page-app-download-guide__step-list li {
  background-color: #f7f7f7;
  border: 1px solid #eee;
  padding: 15px 20px 15px 50px;
}

.page-app-download-guide__process-item .page-app-download-guide__step-list li::before {
  content: counters(process-step-counter, ".");
  counter-increment: process-step-counter;
  background-color: #003366;
  color: #fff;
  font-size: 1em;
  width: 28px;
  height: 28px;
  left: 12px;
}

.page-app-download-guide__game-image,
.page-app-download-guide__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-app-download-guide__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

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

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

.page-app-download-guide__accordion-item {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-app-download-guide__accordion-header {
  width: 100%;
  padding: 20px 25px;
  background-color: #003366;
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-app-download-guide__accordion-header:hover {
  background-color: #004488;
}

.page-app-download-guide__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-app-download-guide__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-app-download-guide__accordion-content {
  padding: 0 25px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-app-download-guide__accordion-content.active {
  max-height: 500px; /* Adjust based on expected content height */
  padding: 20px 25px;
}

.page-app-download-guide__accordion-content p {
  margin: 0;
  color: #444;
}

.page-app-download-guide__conclusion-cta {
  background: linear-gradient(135deg, #003366, #004488);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-app-download-guide__conclusion-text {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-app-download-guide__hero-title {
    font-size: 2.8em;
  }
  .page-app-download-guide__hero-description {
    font-size: 1.1em;
  }
  .page-app-download-guide__section-title {
    font-size: 2em;
  }
  .page-app-download-guide__intro-text {
    font-size: 1em;
  }
  .page-app-download-guide__process-flow {
    grid-template-columns: 1fr;
  }
  .page-app-download-guide__platform-section {
    flex-direction: column;
  }
  .page-app-download-guide__action-center {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-app-download-guide__hero-section {
    padding: 80px 0;
  }
  .page-app-download-guide__hero-title {
    font-size: 2.2em;
  }
  .page-app-download-guide__hero-description {
    font-size: 1em;
  }
  .page-app-download-guide__section-title {
    font-size: 1.8em;
  }
  .page-app-download-guide__features-grid,
  .page-app-download-guide__games-grid,
  .page-app-download-guide__promo-grid,
  .page-app-download-guide__security-features {
    grid-template-columns: 1fr;
  }
  .page-app-download-guide__platform-section,
  .page-app-download-guide__process-item {
    padding: 30px;
  }
  .page-app-download-guide__platform-title {
    font-size: 1.6em;
  }
  .page-app-download-guide__step-list li {
    font-size: 0.95em;
    padding: 15px 15px 15px 45px;
  }
  .page-app-download-guide__step-list li::before {
    width: 25px;
    height: 25px;
    font-size: 1em;
    left: 10px;
  }
  .page-app-download-guide__conclusion-text {
    font-size: 1.1em;
  }
}