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

.page-g666-download-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-g666-download-hero {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Darker blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-g666-download-hero-image {
  max-width: 500px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-g666-download-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
}

.page-g666-download-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-g666-download-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-g666-download-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-g666-download-button.primary {
  background-color: #FFD700; /* Gold */
  color: #003366;
}

.page-g666-download-button.primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-g666-download-button.secondary {
  background-color: #004d99; /* Slightly lighter blue */
  color: #ffffff;
  border: 2px solid #FFD700;
}

.page-g666-download-button.secondary:hover {
  background-color: #003a7a;
  transform: translateY(-2px);
}

.page-g666-download-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-g666-download-section:nth-of-type(even) {
  background-color: #f0f5fa;
}

.page-g666-download-section-title {
  font-size: 2.2em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

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

.page-g666-download-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

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

.page-g666-download-feature-item:hover {
  transform: translateY(-5px);
}

.page-g666-download-feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-g666-download-feature-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-g666-download-feature-description {
  color: #666;
  font-size: 1em;
}

.page-g666-download-platform-guide {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-g666-download-platform-item {
  background-color: #fdfdfd;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  text-align: center;
}

.page-g666-download-platform-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 25px;
}

.page-g666-download-platform-image {
  max-width: 250px;
  height: auto;
  margin-bottom: 30px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.page-g666-download-steps {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  color: #444;
}

.page-g666-download-steps li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-size: 1.1em;
}

.page-g666-download-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #FFD700;
  color: #003366;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-g666-download-process-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-g666-download-process-item {
  background-color: #fdfdfd;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  text-align: center;
}

.page-g666-download-process-image {
  max-width: 180px;
  height: auto;
  margin-bottom: 30px;
}

.page-g666-download-process-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 25px;
}

.page-g666-download-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

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

.page-g666-download-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-g666-download-card-title {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-g666-download-card-description {
  color: #666;
}

.page-g666-download-feature-showcase-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-g666-download-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
  margin-bottom: 50px;
}

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

.page-g666-download-game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-g666-download-game-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-g666-download-game-description {
  color: #666;
}

.page-g666-download-center-button {
  margin-top: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.page-g666-download-faq-item {
  background-color: #fdfdfd;
  padding: 25px 30px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.page-g666-download-faq-question {
  font-size: 1.2em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-g666-download-faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-g666-download-faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-g666-download-faq-answer {
  color: #555;
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

.page-g666-download-faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding-top: 15px;
}

.page-g666-download-final-cta {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #003366, #FFD700);
  color: #ffffff;
  border-radius: 0;
  box-shadow: none;
}

.page-g666-download-final-cta .page-g666-download-section-title {
  color: #ffffff;
}

.page-g666-download-final-cta .page-g666-download-section-title::after {
  background-color: #ffffff;
}

.page-g666-download-final-cta .page-g666-download-text {
  color: #f0f0f0;
}

.page-g666-download-final-cta-image {
  max-width: 600px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-g666-download-title {
    font-size: 2.2em;
  }
  .page-g666-download-subtitle {
    font-size: 1.1em;
  }
  .page-g666-download-section-title {
    font-size: 1.8em;
  }
  .page-g666-download-platform-guide {
    flex-direction: column;
    align-items: center;
  }
  .page-g666-download-process-grid {
    flex-direction: column;
    align-items: center;
  }
  .page-g666-download-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-g666-download-hero {
    padding: 60px 0;
  }
  .page-g666-download-title {
    font-size: 1.8em;
  }
  .page-g666-download-subtitle {
    font-size: 1em;
  }
  .page-g666-download-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-g666-download-section {
    padding: 40px 0;
  }
  .page-g666-download-text {
    font-size: 0.95em;
  }
  .page-g666-download-feature-grid,
  .page-g666-download-feature-list,
  .page-g666-download-game-grid {
    grid-template-columns: 1fr;
  }
  .page-g666-download-platform-item,
  .page-g666-download-process-item {
    min-width: unset;
    width: 100%;
  }
  .page-g666-download-faq-question {
    font-size: 1.1em;
  }
}