/* style/app-download-system-requirements.css */
.page-app-download-system-requirements {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0;
  background-color: #1a1a1a;
  line-height: 1.6;
}

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

.page-app-download-system-requirements__hero-section {
  background: linear-gradient(135deg, #FF0055, #00FFEE);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-app-download-system-requirements__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 0, 85, 0.2) 0%, rgba(0, 255, 238, 0.2) 50%, transparent 70%);
  opacity: 0.3;
  animation: page-app-download-system-requirements__pulse-glow 15s infinite alternate;
}

@keyframes page-app-download-system-requirements__pulse-glow {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.2); opacity: 0.5; }
}

.page-app-download-system-requirements__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #ffffff; /* Ensure high contrast */
}

.page-app-download-system-requirements__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #ffffff; /* Ensure high contrast */
}

.page-app-download-system-requirements__cta-button {
  display: inline-block;
  background-color: #FF0055; /* Main color */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 85, 0.4);
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.page-app-download-system-requirements__cta-button:hover {
  background-color: #e6004d; /* Darker shade of main color */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.6);
}

.page-app-download-system-requirements__content-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-app-download-system-requirements__section-title {
  font-size: 2.5em;
  color: #00FFEE; /* Auxiliary color for titles */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.page-app-download-system-requirements__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FF0055;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-app-download-system-requirements__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0; /* High contrast with background */
  text-align: justify;
}

.page-app-download-system-requirements__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-app-download-system-requirements__image-full-width {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 255, 238, 0.2);
}

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

.page-app-download-system-requirements__spec-card {
  background-color: #2c2c2c;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 255, 238, 0.2);
}

.page-app-download-system-requirements__spec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 255, 238, 0.4);
}

.page-app-download-system-requirements__card-title {
  font-size: 1.8em;
  color: #FF0055; /* Main color for card titles */
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.page-app-download-system-requirements__spec-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-app-download-system-requirements__spec-list li {
  background-color: #3a3a3a;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1em;
  color: #f0f0f0; /* High contrast */
}

.page-app-download-system-requirements__spec-list li strong {
  color: #00FFEE; /* Auxiliary color for emphasis */
  margin-right: 8px;
}

.page-app-download-system-requirements__card-description {
  font-size: 0.95em;
  color: #b0b0b0; /* Slightly lighter for secondary text */
  text-align: center;
}

.page-app-download-system-requirements__list-optimized,
.page-app-download-system-requirements__benefits-list,
.page-app-download-system-requirements__optimization-list,
.page-app-download-system-requirements__troubleshooting-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-app-download-system-requirements__list-optimized li,
.page-app-download-system-requirements__benefits-list li,
.page-app-download-system-requirements__optimization-list li,
.page-app-download-system-requirements__troubleshooting-list li {
  background-color: #2c2c2c;
  border-left: 5px solid #FF0055;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #f0f0f0; /* High contrast */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-system-requirements__list-optimized li:nth-child(even),
.page-app-download-system-requirements__benefits-list li:nth-child(even),
.page-app-download-system-requirements__optimization-list li:nth-child(even),
.page-app-download-system-requirements__troubleshooting-list li:nth-child(even) {
  border-left-color: #00FFEE;
}

.page-app-download-system-requirements__cta-bottom {
  text-align: center;
  background-color: #2c2c2c;
  padding: 50px 30px;
  border-radius: 20px;
  margin-top: 60px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid #FF0055;
}

.page-app-download-system-requirements__cta-heading {
  font-size: 2.2em;
  color: #00FFEE;
  margin-bottom: 15px;
}

.page-app-download-system-requirements__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-app-download-system-requirements__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25em;
  background-color: #FF0055;
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.5);
}

.page-app-download-system-requirements__cta-button--large:hover {
  background-color: #e6004d;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 0, 85, 0.7);
}

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

  .page-app-download-system-requirements__subtitle {
    font-size: 1em;
  }

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

  .page-app-download-system-requirements__specs-grid {
    grid-template-columns: 1fr;
  }

  .page-app-download-system-requirements__spec-card {
    padding: 20px;
  }

  .page-app-download-system-requirements__card-title {
    font-size: 1.5em;
  }

  .page-app-download-system-requirements__content-section p,
  .page-app-download-system-requirements__list-optimized li,
  .page-app-download-system-requirements__benefits-list li,
  .page-app-download-system-requirements__optimization-list li,
  .page-app-download-system-requirements__troubleshooting-list li {
    font-size: 1em;
  }

  .page-app-download-system-requirements__cta-heading {
    font-size: 1.8em;
  }

  .page-app-download-system-requirements__cta-bottom p {
    font-size: 1em;
  }

  .page-app-download-system-requirements__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

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

  .page-app-download-system-requirements__hero-section {
    padding: 60px 0;
  }

  .page-app-download-system-requirements__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-app-download-system-requirements__content-section {
    padding: 40px 0;
  }

  .page-app-download-system-requirements__spec-list li {
    font-size: 0.9em;
  }
}