/* style/download-center.css */
.page-download-center {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary dark blue background */
  line-height: 1.6;
}

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

.page-download-center__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-download-center__sub-title {
  font-size: 2.2em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 50px;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-download-center__section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0; /* Lighter gray for subtitles */
  text-align: center;
  margin-bottom: 50px;
}

.page-download-center .highlight {
  color: #FFD700; /* Gold for keyword highlight */
}

/* Hero Section */
.page-download-center__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A3A5E 100%); /* Dark blue gradient */
  padding: 100px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center__hero-title {
  font-size: 3.8em;
  color: #FFFFFF; /* White for main hero title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-download-center__hero-description {
  font-size: 1.4em;
  color: #D0D0D0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

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

.page-download-center__btn--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #0A192F;
}

.page-download-center__btn--primary:hover {
  background-color: #E0B500; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-download-center__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-download-center__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-download-center__hero-image {
  max-width: 90%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

/* Why Choose Section */
.page-download-center__why-choose {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-download-center__feature-item {
  background-color: #1A2B42; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-download-center__feature-item:hover {
  transform: translateY(-10px);
}

.page-download-center__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-download-center__feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-download-center__feature-text {
  font-size: 1.05em;
  color: #D0D0D0;
}

/* Download Platforms Section */
.page-download-center__download-platforms {
  padding: 80px 0;
  background-color: #0A192F;
}

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

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

.page-download-center__platform-item:hover {
  transform: translateY(-10px);
}

.page-download-center__platform-image {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-download-center__platform-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-download-center__platform-text {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 25px;
}

/* Deep Content Section */
.page-download-center__deep-content {
  padding: 80px 0;
  background-color: #0F2038;
}

.page-download-center__deep-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #D0D0D0;
}

.page-download-center__deep-content ul,
.page-download-center__deep-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
  color: #D0D0D0;
}

.page-download-center__deep-content li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-download-center__deep-content h4 {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-download-center__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-download-center__faq-item {
  background-color: #1A2B42;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.page-download-center__faq-item h4 {
  color: #FFD700;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-download-center__faq-item p {
  color: #D0D0D0;
  margin-bottom: 0;
}

.page-download-center__cta-bottom {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Detail Pages Section */
.page-download-center__detail-pages {
  padding: 80px 0;
  background-color: #0A192F;
}

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

.page-download-center__detail-item {
  background-color: #1A2B42;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-download-center__detail-item:hover {
  transform: translateY(-8px);
}

.page-download-center__detail-title {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-download-center__detail-title a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

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

.page-download-center__detail-description {
  font-size: 1.05em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-download-center__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 20px;
  background-color: #FFD700;
  color: #0A192F;
  text-decoration: none;
  font-weight: bold;
}

.page-download-center__btn--small:hover {
  background-color: #E0B500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-center__hero-title {
    font-size: 3em;
  }
  .page-download-center__hero-description {
    font-size: 1.2em;
  }
  .page-download-center__section-title {
    font-size: 2.2em;
  }
  .page-download-center__sub-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-download-center__hero-title {
    font-size: 2.5em;
  }
  .page-download-center__hero-description {
    font-size: 1.1em;
  }
  .page-download-center__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-download-center__section-title {
    font-size: 2em;
  }
  .page-download-center__sub-title {
    font-size: 1.6em;
  }
  .page-download-center__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-download-center__hero-title {
    font-size: 2em;
  }
  .page-download-center__hero-description {
    font-size: 1em;
  }
  .page-download-center__section-title {
    font-size: 1.8em;
  }
  .page-download-center__sub-title {
    font-size: 1.4em;
  }
  .page-download-center__feature-title, .page-download-center__platform-title {
    font-size: 1.4em;
  }
  .page-download-center__feature-text, .page-download-center__platform-text {
    font-size: 0.95em;
  }
}