.page-download-center-system-requirements {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A2239; /* Dark blue primary background */
  line-height: 1.6;
}

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

.page-download-center-system-requirements__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #1A3B58 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-download-center-system-requirements__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 34, 57, 0) 70%);
  opacity: 0.3;
  animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-download-center-system-requirements__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-download-center-system-requirements__hero-title .highlight {
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-download-center-system-requirements__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #E0E0E0;
  position: relative;
  z-index: 1;
}

.page-download-center-system-requirements__intro-section,
.page-download-center-system-requirements__requirements-section,
.page-download-center-system-requirements__app-specific-section,
.page-download-center-system-requirements__network-section,
.page-download-center-system-requirements__troubleshooting-section,
.page-download-center-system-requirements__conclusion-section {
  padding: 60px 0;
  background-color: #0A2239;
}

.page-download-center-system-requirements__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-download-center-system-requirements__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-download-center-system-requirements__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-download-center-system-requirements__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-download-center-system-requirements__grid-item {
  background-color: #1A3B58; /* Slightly lighter dark blue for card backgrounds */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-download-center-system-requirements__item-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  text-align: center;
}

.page-download-center-system-requirements__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-download-center-system-requirements__list li {
  margin-bottom: 10px;
}

.page-download-center-system-requirements__sub-list {
  list-style-type: circle;
  margin-left: 20px;
  margin-top: 5px;
}

.page-download-center-system-requirements__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  white-space: nowrap;
}

.page-download-center-system-requirements__btn--primary {
  background-color: #FFD700; /* Gold primary button */
  color: #0A2239; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-download-center-system-requirements__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-download-center-system-requirements__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-download-center-system-requirements__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-download-center-system-requirements__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.page-download-center-system-requirements__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-system-requirements__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-download-center-system-requirements p {
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-download-center-system-requirements a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-download-center-system-requirements a:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-download-center-system-requirements__hero-title {
    font-size: 2.5em;
  }

  .page-download-center-system-requirements__hero-subtitle {
    font-size: 1.1em;
  }

  .page-download-center-system-requirements__section-title {
    font-size: 2em;
  }

  .page-download-center-system-requirements__sub-section-title {
    font-size: 1.5em;
  }

  .page-download-center-system-requirements__grid {
    grid-template-columns: 1fr;
  }

  .page-download-center-system-requirements__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
}

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

  .page-download-center-system-requirements__hero-subtitle {
    font-size: 1em;
  }

  .page-download-center-system-requirements__section-title {
    font-size: 1.8em;
  }

  .page-download-center-system-requirements__sub-section-title {
    font-size: 1.3em;
  }

  .page-download-center-system-requirements__hero-section {
    padding: 70px 0;
  }

  .page-download-center-system-requirements__intro-section,
  .page-download-center-system-requirements__requirements-section,
  .page-download-center-system-requirements__app-specific-section,
  .page-download-center-system-requirements__network-section,
  .page-download-center-system-requirements__troubleshooting-section,
  .page-download-center-system-requirements__conclusion-section {
    padding: 40px 0;
  }
}