.page-download-center-pc-client {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-download-center-pc-client__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient for depth */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-pc-client__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Accent color for title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-pc-client__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-download-center-pc-client__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-download-center-pc-client__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-center-pc-client__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-download-center-pc-client__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.6);
}

.page-download-center-pc-client__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.page-download-center-pc-client__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.page-download-center-pc-client__btn--inline {
  padding: 10px 20px;
  font-size: 1em;
}

.page-download-center-pc-client__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-download-center-pc-client__hero-image {
  max-width: 90%;
  height: auto;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client__section-title {
  font-size: 2.8em;
  color: #003366;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-download-center-pc-client__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-download-center-pc-client__why-choose-section,
.page-download-center-pc-client__download-guide-section,
.page-download-center-pc-client__features-overview-section,
.page-download-center-pc-client__promotion-section,
.page-download-center-pc-client__security-section,
.page-download-center-pc-client__faq-section,
.page-download-center-pc-client__call-to-action-final {
  padding: 80px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-download-center-pc-client__why-choose-section {
  background-color: #f0f5fa; /* Light blue background */
}

.page-download-center-pc-client__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

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

.page-download-center-pc-client__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-pc-client__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-download-center-pc-client__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-pc-client__feature-text {
  font-size: 1em;
  color: #666;
}

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

.page-download-center-pc-client__step-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-download-center-pc-client__step-number {
  width: 50px;
  height: 50px;
  background-color: #003366;
  color: #FFCC00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 51, 102, 0.4);
}

.page-download-center-pc-client__step-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-pc-client__step-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-download-center-pc-client__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-download-center-pc-client__system-requirements {
  background-color: #f0f5fa;
  border: 1px solid #d0e0f0;
  border-radius: 10px;
  padding: 30px;
  margin-top: 60px;
  text-align: left;
}

.page-download-center-pc-client__sub-section-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.page-download-center-pc-client__system-requirements ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.page-download-center-pc-client__system-requirements li {
  background-color: #e6f0fa;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1em;
  color: #333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-download-center-pc-client__system-requirements li strong {
  color: #003366;
}

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

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

.page-download-center-pc-client__category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-pc-client__category-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  background-color: #e6f0fa;
  padding: 10px;
}

.page-download-center-pc-client__category-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-pc-client__category-text {
  font-size: 1em;
  color: #666;
}

.page-download-center-pc-client__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-download-center-pc-client__promotion-section {
  background-color: #003366; /* Dark blue background */
  color: #fff;
}

.page-download-center-pc-client__promotion-section .page-download-center-pc-client__section-title {
  color: #FFCC00;
}

.page-download-center-pc-client__promotion-section .page-download-center-pc-client__section-description {
  color: #e0e0e0;
}

.page-download-center-pc-client__promotion-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}

.page-download-center-pc-client__promotion-image {
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download-center-pc-client__promotion-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: left;
}

.page-download-center-pc-client__promotion-text h3 {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-download-center-pc-client__promotion-text p,
.page-download-center-pc-client__promotion-text li {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 10px;
}

.page-download-center-pc-client__promotion-text ol {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-download-center-pc-client__promotion-text a {
  color: #FFCC00;
  text-decoration: underline;
}

.page-download-center-pc-client__promotion-text a:hover {
  color: #e6b800;
}

.page-download-center-pc-client__terms-conditions {
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 20px;
}

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

.page-download-center-pc-client__security-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-download-center-pc-client__security-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-download-center-pc-client__security-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-pc-client__security-text {
  font-size: 1em;
  color: #666;
}

.page-download-center-pc-client__faq-list {
  margin-top: 50px;
}

.page-download-center-pc-client__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-download-center-pc-client__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-download-center-pc-client__faq-answer {
  font-size: 1em;
  color: #555;
}

.page-download-center-pc-client__call-to-action-final {
  text-align: center;
  background-color: #002244; /* Even darker blue */
  color: #fff;
}

.page-download-center-pc-client__call-to-action-final .page-download-center-pc-client__section-title {
  color: #FFCC00;
}

.page-download-center-pc-client__call-to-action-final .page-download-center-pc-client__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center-pc-client__hero-title {
    font-size: 2.8em;
  }
  .page-download-center-pc-client__section-title {
    font-size: 2.2em;
  }
  .page-download-center-pc-client__promotion-details {
    flex-direction: column;
  }
  .page-download-center-pc-client__promotion-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-download-center-pc-client__hero-title {
    font-size: 2.2em;
  }
  .page-download-center-pc-client__hero-subtitle {
    font-size: 1.2em;
  }
  .page-download-center-pc-client__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center-pc-client__btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-download-center-pc-client__btn--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }
  .page-download-center-pc-client__section-title {
    font-size: 1.8em;
  }
  .page-download-center-pc-client__section-description {
    font-size: 1em;
  }
  .page-download-center-pc-client__features-grid,
  .page-download-center-pc-client__steps-grid,
  .page-download-center-pc-client__game-categories,
  .page-download-center-pc-client__security-points {
    grid-template-columns: 1fr;
  }
  .page-download-center-pc-client__system-requirements ul {
    grid-template-columns: 1fr;
  }
  .page-download-center-pc-client__promotion-text {
    text-align: center;
  }
  .page-download-center-pc-client__promotion-text ol {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-download-center-pc-client__hero-title {
    font-size: 1.8em;
  }
  .page-download-center-pc-client__hero-subtitle {
    font-size: 1em;
  }
  .page-download-center-pc-client__section-title {
    font-size: 1.5em;
  }
  .page-download-center-pc-client__feature-title,
  .page-download-center-pc-client__step-title,
  .page-download-center-pc-client__sub-section-title,
  .page-download-center-pc-client__category-title,
  .page-download-center-pc-client__promotion-text h3,
  .page-download-center-pc-client__security-title,
  .page-download-center-pc-client__faq-question {
    font-size: 1.2em;
  }
  .page-download-center-pc-client__hero-section,
  .page-download-center-pc-client__why-choose-section,
  .page-download-center-pc-client__download-guide-section,
  .page-download-center-pc-client__features-overview-section,
  .page-download-center-pc-client__promotion-section,
  .page-download-center-pc-client__security-section,
  .page-download-center-pc-client__faq-section,
  .page-download-center-pc-client__call-to-action-final {
    padding: 40px 0;
  }
}