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

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

.page-download-center-pc-client__hero {
  background: linear-gradient(135deg, #1A237E 0%, #3f479a 100%); /* Dark blue gradient */
  color: #FFFFFF; /* White text for dark background */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-pc-client__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,gaming_pattern,dark_blue]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-download-center-pc-client__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-pc-client__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-download-center-pc-client__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.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;
  text-align: center;
}

.page-download-center-pc-client__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark blue text for gold background */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-download-center-pc-client__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for dark background */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.page-download-center-pc-client__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A237E; /* Dark blue text for gold background */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-download-center-pc-client__btn--dark {
  background-color: #1A237E; /* Dark blue button */
  color: #FFD700; /* Gold text for dark blue background */
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.4);
}

.page-download-center-pc-client__btn--dark:hover {
  background-color: #3f479a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.6);
}

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

.page-download-center-pc-client__section {
  padding: 80px 0;
}

.page-download-center-pc-client__section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-download-center-pc-client__section-title {
  font-size: 2.5em;
  color: #1A237E; /* Dark blue title */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

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

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

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

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

.page-download-center-pc-client__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #FFD700; /* Gold icon color */
}

.page-download-center-pc-client__feature-title {
  font-size: 1.5em;
  color: #1A237E; /* Dark blue title */
  margin-bottom: 15px;
}

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

.page-download-center-pc-client__download-guide .page-download-center-pc-client__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.page-download-center-pc-client__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.page-download-center-pc-client__step-number {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700; /* Gold circle */
  color: #1A237E; /* Dark blue number */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.6);
}

.page-download-center-pc-client__step-title {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 15px;
}

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

.page-download-center-pc-client__requirements-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-download-center-pc-client__requirements-list li {
  background-color: #f0f2f5;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #1A237E; /* Dark blue accent */
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-download-center-pc-client__requirements-list li strong {
  color: #1A237E;
}

.page-download-center-pc-client__text-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  color: #444;
}

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

.page-download-center-pc-client__game-category-item {
  background-color: #FFFFFF;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-pc-client__game-category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-download-center-pc-client__game-category-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  color: #1A237E; /* Dark blue icon */
}

.page-download-center-pc-client__game-category-title {
  font-size: 1.3em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-download-center-pc-client__bg-accent {
  background-color: #FFD700; /* Gold background */
  color: #1A237E; /* Dark blue text for gold background */
}

.page-download-center-pc-client__text-dark {
  color: #1A237E; /* Dark blue text */
}

.page-download-center-pc-client__register-now {
  padding: 60px 0;
}

.page-download-center-pc-client__flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  text-align: left;
}

.page-download-center-pc-client__register-image,
.page-download-center-pc-client__commitment-image {
  max-width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-download-center-pc-client__register-content,
.page-download-center-pc-client__commitment-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-download-center-pc-client__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-download-center-pc-client__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-download-center-pc-client__faq-question {
  font-size: 1.2em;
  color: #1A237E;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-download-center-pc-client__faq-question::after {
  content: '+';
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-download-center-pc-client__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-download-center-pc-client__faq-answer {
  padding: 0 25px;
  background-color: #f9f9f9;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-download-center-pc-client__faq-answer.open {
  max-height: 200px; /* Adjust as needed for content */
  padding: 15px 25px 20px;
}

.page-download-center-pc-client__mt-large {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-center-pc-client__hero-title {
    font-size: 2.8em;
  }
  .page-download-center-pc-client__hero-subtitle {
    font-size: 1.3em;
  }
  .page-download-center-pc-client__section-title {
    font-size: 2em;
  }
  .page-download-center-pc-client__flex-center {
    flex-direction: column;
    text-align: center;
  }
  .page-download-center-pc-client__register-content,
  .page-download-center-pc-client__commitment-content {
    max-width: 100%;
  }
  .page-download-center-pc-client__register-image,
  .page-download-center-pc-client__commitment-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-download-center-pc-client__hero {
    padding: 80px 0;
  }
  .page-download-center-pc-client__hero-title {
    font-size: 2.2em;
  }
  .page-download-center-pc-client__hero-subtitle {
    font-size: 1.1em;
  }
  .page-download-center-pc-client__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center-pc-client__btn {
    padding: 12px 25px;
    font-size: 1em;
    width: 100%;
    max-width: 300px;
  }
  .page-download-center-pc-client__section {
    padding: 60px 0;
  }
  .page-download-center-pc-client__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-download-center-pc-client__features-grid,
  .page-download-center-pc-client__steps-grid,
  .page-download-center-pc-client__game-categories {
    grid-template-columns: 1fr;
  }
  .page-download-center-pc-client__step-item {
    padding-top: 60px;
  }
  .page-download-center-pc-client__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
    top: -25px;
  }
  .page-download-center-pc-client__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }
  .page-download-center-pc-client__faq-answer {
    padding: 12px 20px 15px;
  }
}

@media (max-width: 480px) {
  .page-download-center-pc-client__hero-title {
    font-size: 1.8em;
  }
  .page-download-center-pc-client__hero-subtitle {
    font-size: 0.95em;
  }
  .page-download-center-pc-client__btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-download-center-pc-client__section-title {
    font-size: 1.5em;
  }
  .page-download-center-pc-client__text-content {
    font-size: 0.95em;
  }
}