/* style/download-app-system-requirements.css */
.page-download-app-system-requirements {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Dark text on light background */
  line-height: 1.6;
  background-color: #f0f2f5; /* Light background for main content */
}

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

.page-download-app-system-requirements__hero-section {
  background: linear-gradient(135deg, #001f3f 0%, #0a3a6b 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-download-app-system-requirements__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffcc00; /* Auxiliary color for title */
  position: relative;
  z-index: 1;
}

.page-download-app-system-requirements__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-download-app-system-requirements__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.page-download-app-system-requirements__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-download-app-system-requirements__btn--primary {
  background-color: #ffcc00; /* Auxiliary color */
  color: #001f3f; /* Dark text on light background */
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-download-app-system-requirements__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-download-app-system-requirements__btn--secondary {
  background-color: transparent;
  color: #ffcc00; /* Auxiliary color */
  border: 2px solid #ffcc00;
}

.page-download-app-system-requirements__btn--secondary:hover {
  background-color: #ffcc00;
  color: #001f3f;
  transform: translateY(-3px);
}

.page-download-app-system-requirements__content-section {
  padding: 60px 0;
  text-align: left;
}

.page-download-app-system-requirements__section--dark {
  background-color: #001f3f;
  color: #ffffff;
}

.page-download-app-system-requirements__section--dark .page-download-app-system-requirements__section-title,
.page-download-app-system-requirements__section--dark .page-download-app-system-requirements__sub-title {
  color: #ffcc00;
}

.page-download-app-system-requirements__section-title {
  font-size: 2.8em;
  color: #001f3f; /* Main color for titles on light background */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

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

.page-download-app-system-requirements__sub-title {
  font-size: 1.8em;
  color: #001f3f;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-download-app-system-requirements__sub-title--spacing {
  margin-top: 50px;
}

.page-download-app-system-requirements__text {
  font-size: 1.05em;
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-download-app-system-requirements__image-wrapper {
  margin: 30px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-download-app-system-requirements__image-wrapper--cta {
  margin-top: 40px;
  max-width: 600px;
}

.page-download-app-system-requirements__image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-download-app-system-requirements__list li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
}

.page-download-app-system-requirements__list li::before {
  content: '✔'; /* Checkmark icon */
  color: #ffcc00;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-download-app-system-requirements__list--bullet li::before {
  content: '•'; /* Bullet point */
  color: #ffcc00;
  font-size: 1.5em;
  top: -3px;
}

.page-download-app-system-requirements__list--ordered {
  list-style: decimal;
  padding-left: 25px;
}

.page-download-app-system-requirements__list--ordered li::before {
  content: none;
}

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

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

.page-download-app-system-requirements__grid-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-app-system-requirements__section--dark .page-download-app-system-requirements__grid-item {
  background-color: #0a3a6b; /* Slightly lighter dark blue for cards */
  color: #ffffff;
}

.page-download-app-system-requirements__section--dark .page-download-app-system-requirements__grid-item .page-download-app-system-requirements__sub-title {
  color: #ffcc00;
}

.page-download-app-system-requirements__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-download-app-system-requirements__cta-section {
  text-align: center;
  padding: 80px 0;
  background-color: #001f3f;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-download-app-system-requirements__cta-title {
  font-size: 3em;
  color: #ffcc00;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.page-download-app-system-requirements__cta-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-app-system-requirements__hero-title {
    font-size: 2.8em;
  }
  .page-download-app-system-requirements__section-title {
    font-size: 2.2em;
  }
  .page-download-app-system-requirements__sub-title {
    font-size: 1.5em;
  }
  .page-download-app-system-requirements__grid--two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-download-app-system-requirements__hero-section {
    padding: 80px 0;
  }
  .page-download-app-system-requirements__hero-title {
    font-size: 2.2em;
  }
  .page-download-app-system-requirements__hero-subtitle {
    font-size: 1em;
  }
  .page-download-app-system-requirements__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-app-system-requirements__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-download-app-system-requirements__section-title {
    font-size: 1.8em;
  }
  .page-download-app-system-requirements__sub-title {
    font-size: 1.3em;
  }
  .page-download-app-system-requirements__content-section {
    padding: 40px 0;
  }
  .page-download-app-system-requirements__cta-title {
    font-size: 2.5em;
  }
  .page-download-app-system-requirements__cta-text {
    font-size: 1em;
  }
  .page-download-app-system-requirements__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-download-app-system-requirements__hero-title {
    font-size: 1.8em;
  }
  .page-download-app-system-requirements__section-title {
    font-size: 1.5em;
  }
  .page-download-app-system-requirements__sub-title {
    font-size: 1.2em;
  }
  .page-download-app-system-requirements__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
}