/* style/download-center-app-features.css */
.page-download-center-app-features {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2E36; /* Main background color */
}

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

/* Hero Section */
.page-download-center-app-features .hero-section {
  background: linear-gradient(135deg, #0A2E36 0%, #1a4d5a 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-app-features .hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-download-center-app-features .hero-description {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-app-features .hero-actions {
  margin-bottom: 50px;
}

.page-download-center-app-features .hero-image {
  max-width: 60%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
}

/* General Buttons */
.page-download-center-app-features .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-download-center-app-features .btn-primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #0A2E36; /* Main color for text */
  border: 2px solid #FFD700;
}

.page-download-center-app-features .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
}

.page-download-center-app-features .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Auxiliary color */
  border: 2px solid #FFD700;
}

.page-download-center-app-features .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2E36;
  transform: translateY(-3px);
}

.page-download-center-app-features .btn-lg {
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Section Titles and Descriptions */
.page-download-center-app-features .section-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary color */
  text-align: center;
  margin-bottom: 25px;
  margin-top: 60px;
  font-weight: bold;
  line-height: 1.3;
}

.page-download-center-app-features .section-description {
  font-size: 1.1em;
  color: #CCCCCC;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Features Overview Section */
.page-download-center-app-features .features-overview-section {
  padding: 80px 0;
  background-color: #0A2E36;
}

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

.page-download-center-app-features .feature-item {
  background-color: #1a4d5a; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download-center-app-features .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-download-center-app-features .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  border-radius: 50%;
  background-color: #FFD700;
  padding: 15px;
  object-fit: contain;
}

.page-download-center-app-features .feature-title {
  font-size: 1.8em;
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-app-features .feature-text {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.7;
}

/* Why Choose Us Section */
.page-download-center-app-features .why-choose-us-section {
  padding: 80px 0;
  background-color: #0A2E36;
}

.page-download-center-app-features .advantage-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 900px;
}

.page-download-center-app-features .advantage-list li {
  background-color: #1a4d5a;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features .list-icon {
  font-size: 1.8em;
  color: #FFD700;
  margin-right: 20px;
  line-height: 1;
}

.page-download-center-app-features .list-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-download-center-app-features .advantage-list li p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.6;
  margin-top: 5px;
}

.page-download-center-app-features .why-choose-image {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Download Guide Section */
.page-download-center-app-features .download-guide-section {
  padding: 80px 0;
  background-color: #0A2E36;
}

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

.page-download-center-app-features .step-item {
  background-color: #1a4d5a;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-app-features .step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A2E36;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features .step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-download-center-app-features .step-text {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.7;
}

.page-download-center-app-features .cta-download-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-download-center-app-features .guide-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 60px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsible Gaming Section */
.page-download-center-app-features .responsible-gaming-section {
  padding: 80px 0;
  background-color: #0A2E36;
  text-align: center;
}

.page-download-center-app-features .responsible-gaming-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 900px;
  text-align: left;
}

.page-download-center-app-features .responsible-gaming-list li {
  background-color: #1a4d5a;
  margin-bottom: 15px;
  padding: 20px 30px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features .responsible-gaming-list .list-icon {
  font-size: 1.8em;
  color: #FFD700;
  margin-right: 20px;
  line-height: 1;
}

.page-download-center-app-features .responsible-gaming-list .list-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-download-center-app-features .responsible-gaming-list li p {
  color: #E0E0E0;
  font-size: 1em;
  line-height: 1.6;
  margin-top: 5px;
}

.page-download-center-app-features .responsible-gaming-text {
  font-size: 1.1em;
  color: #CCCCCC;
  max-width: 900px;
  margin: 40px auto;
  line-height: 1.6;
}

/* FAQ Section */
.page-download-center-app-features .faq-section {
  padding: 80px 0;
  background-color: #0A2E36;
}

.page-download-center-app-features .faq-item {
  background-color: #1a4d5a;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-download-center-app-features .faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Auxiliary color */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-download-center-app-features .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-download-center-app-features .faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-download-center-app-features .faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding: 0 0;
}

.page-download-center-app-features .faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding: 10px 0;
}

/* CTA Section */
.page-download-center-app-features .cta-section {
  background: linear-gradient(135deg, #1a4d5a 0%, #0A2E36 100%);
  padding: 80px 0;
  text-align: center;
}

.page-download-center-app-features .cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-download-center-app-features .cta-description {
  font-size: 1.2em;
  color: #CCCCCC;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-center-app-features .hero-title {
    font-size: 2.5em;
  }
  .page-download-center-app-features .section-title {
    font-size: 2.2em;
  }
  .page-download-center-app-features .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-download-center-app-features .hero-image {
    max-width: 80%;
  }
  .page-download-center-app-features .why-choose-image,
  .page-download-center-app-features .guide-image {
    max-width: 90%;
  }
  .page-download-center-app-features .cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-download-center-app-features .hero-section,
  .page-download-center-app-features .features-overview-section,
  .page-download-center-app-features .why-choose-us-section,
  .page-download-center-app-features .download-guide-section,
  .page-download-center-app-features .responsible-gaming-section,
  .page-download-center-app-features .faq-section,
  .page-download-center-app-features .cta-section {
    padding: 60px 0;
  }
  .page-download-center-app-features .hero-title {
    font-size: 2em;
  }
  .page-download-center-app-features .section-title {
    font-size: 1.8em;
  }
  .page-download-center-app-features .hero-description,
  .page-download-center-app-features .section-description,
  .page-download-center-app-features .responsible-gaming-text,
  .page-download-center-app-features .cta-description {
    font-size: 1em;
  }
  .page-download-center-app-features .btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-download-center-app-features .btn-lg {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-download-center-app-features .feature-item,
  .page-download-center-app-features .step-item,
  .page-download-center-app-features .advantage-list li,
  .page-download-center-app-features .responsible-gaming-list li,
  .page-download-center-app-features .faq-item {
    padding: 20px;
  }
  .page-download-center-app-features .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .page-download-center-app-features .feature-title,
  .page-download-center-app-features .step-title,
  .page-download-center-app-features .list-title,
  .page-download-center-app-features .faq-question {
    font-size: 1.4em;
  }
  .page-download-center-app-features .list-icon,
  .page-download-center-app-features .responsible-gaming-list .list-icon {
    font-size: 1.5em;
    margin-right: 15px;
  }
  .page-download-center-app-features .cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-download-center-app-features .hero-title {
    font-size: 1.8em;
  }
  .page-download-center-app-features .section-title {
    font-size: 1.6em;
  }
  .page-download-center-app-features .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-download-center-app-features .btn {
    width: 90%;
    margin: 10px 0;
  }
  .page-download-center-app-features .cta-download-bottom .btn {
    width: auto;
  }
  .page-download-center-app-features .hero-image {
    max-width: 100%;
  }
  .page-download-center-app-features .why-choose-image,
  .page-download-center-app-features .guide-image {
    max-width: 100%;
  }
  .page-download-center-app-features .cta-title {
    font-size: 1.8em;
  }
}