/* style/download-center-system-requirements.css */

/* Variables */
:root {
  --nohu666-primary-color: #2D3E50; /* Deep Tech Blue */
  --nohu666-secondary-color: #F39C12; /* Vibrant Orange */
  --nohu666-text-dark: #333333;
  --nohu666-text-light: #ffffff;
  --nohu666-bg-light: #f8f8f8;
  --nohu666-bg-dark: #222222;
  --nohu666-border-color: #e0e0e0;
}

.page-download-center-system-requirements {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--nohu666-text-dark);
  background-color: var(--nohu666-bg-light);
  padding: 0;
  margin: 0;
}

.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, var(--nohu666-primary-color) 0%, var(--nohu666-secondary-color) 100%);
  color: var(--nohu666-text-light);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-download-center-system-requirements__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-download-center-system-requirements__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.page-download-center-system-requirements__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
  z-index: 1;
  border: none;
}

.page-download-center-system-requirements__btn--primary {
  background-color: var(--nohu666-secondary-color);
  color: var(--nohu666-text-light);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.page-download-center-system-requirements__btn--primary:hover {
  background-color: #e08b0f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.6);
}

.page-download-center-system-requirements__btn--secondary {
  background-color: var(--nohu666-primary-color);
  color: var(--nohu666-text-light);
  border: 2px solid var(--nohu666-primary-color);
  box-shadow: 0 4px 15px rgba(45, 62, 80, 0.2);
}

.page-download-center-system-requirements__btn--secondary:hover {
  background-color: #3a5068;
  border-color: #3a5068;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 62, 80, 0.4);
}

.page-download-center-system-requirements__btn--link {
  background: none;
  color: var(--nohu666-primary-color);
  padding: 10px 20px;
  border: 2px solid var(--nohu666-primary-color);
  margin-left: 15px;
}

.page-download-center-system-requirements__btn--link:hover {
  color: var(--nohu666-secondary-color);
  border-color: var(--nohu666-secondary-color);
  background-color: rgba(243, 156, 18, 0.1);
}

.page-download-center-system-requirements__btn--pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(243, 156, 18, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); }
}

.page-download-center-system-requirements__content-section {
  padding: 60px 0;
  background-color: var(--nohu666-bg-light);
}

.page-download-center-system-requirements__article {
  background-color: var(--nohu666-text-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.page-download-center-system-requirements__section-title {
  font-size: 2.5em;
  color: var(--nohu666-primary-color);
  margin-bottom: 30px;
  text-align: center;
  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: var(--nohu666-secondary-color);
  border-radius: 2px;
}

.page-download-center-system-requirements__sub-section-title {
  font-size: 1.8em;
  color: var(--nohu666-primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--nohu666-secondary-color);
  padding-left: 15px;
}

.page-download-center-system-requirements__article p {
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
  color: var(--nohu666-text-dark);
}

.page-download-center-system-requirements__article a {
  color: var(--nohu666-secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-download-center-system-requirements__article a:hover {
  color: var(--nohu666-primary-color);
  text-decoration: underline;
}

.page-download-center-system-requirements__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: var(--nohu666-text-dark);
}

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

.page-download-center-system-requirements__list li strong {
  color: var(--nohu666-primary-color);
}

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

.page-download-center-system-requirements__image-inline {
  width: 48%; /* Adjust as needed */
  height: auto;
  border-radius: 8px;
  margin: 20px 1% 20px 0;
  float: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-download-center-system-requirements__image-inline:nth-of-type(odd) {
  float: right;
  margin: 20px 0 20px 1%;
}

.page-download-center-system-requirements__article::after {
  content: '';
  display: block;
  clear: both;
}

.page-download-center-system-requirements__cta-text {
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  color: var(--nohu666-primary-color);
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-download-center-system-requirements__button-group {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-download-center-system-requirements__button-group--large .page-download-center-system-requirements__btn {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-download-center-system-requirements__disclaimer {
  font-size: 0.9em;
  color: #777;
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px dashed var(--nohu666-border-color);
}

.page-download-center-system-requirements__related-info {
  background-color: var(--nohu666-bg-light);
  padding: 60px 0;
  text-align: center;
}

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

.page-download-center-system-requirements__card {
  background-color: var(--nohu666-text-light);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-download-center-system-requirements__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-download-center-system-requirements__card-title {
  font-size: 1.4em;
  color: var(--nohu666-primary-color);
  padding: 20px 20px 10px;
  margin: 0;
}

.page-download-center-system-requirements__card-title a {
  color: var(--nohu666-primary-color);
  text-decoration: none;
}

.page-download-center-system-requirements__card-title a:hover {
  color: var(--nohu666-secondary-color);
  text-decoration: underline;
}

.page-download-center-system-requirements__card-description {
  font-size: 1em;
  color: #555;
  padding: 0 20px 20px;
  margin: 0;
}

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

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

  .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__article {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .page-download-center-system-requirements__hero-section {
    padding: 80px 0;
  }

  .page-download-center-system-requirements__hero-title {
    font-size: 2.2em;
  }

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

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

  .page-download-center-system-requirements__btn--link {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-download-center-system-requirements__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-download-center-system-requirements__image-inline {
    width: 100%;
    float: none;
    margin: 20px 0;
  }

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

  .page-download-center-system-requirements__article {
    padding: 20px;
  }
}

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

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

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

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

  .page-download-center-system-requirements__list {
    margin-left: 15px;
    font-size: 1em;
  }

  .page-download-center-system-requirements__article p {
    font-size: 1em;
  }

  .page-download-center-system-requirements__button-group--large .page-download-center-system-requirements__btn {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}