/* style/download-center-android-app.css */

.page-download-center-android-app {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #000000; /* Deep black for main background */
}

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

/* Hero Section */
.page-download-center-android-app__hero {
  background: linear-gradient(135deg, #1A237E 0%, #000000 70%); /* Dark blue to black gradient */
  color: #FFD700; /* Gold for main title */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-android-app__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,gaming,luxury]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-download-center-android-app__hero > .page-download-center-android-app__container {
  position: relative;
  z-index: 1;
}

.page-download-center-android-app__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-download-center-android-app__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-android-app__download-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-download-center-android-app__qr-code-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-download-center-android-app__qr-code {
  width: 150px;
  height: 150px;
  border-radius: 5px;
}

.page-download-center-android-app__qr-text {
  margin-top: 10px;
  font-size: 1.1em;
  color: #FFD700;
}

/* Buttons */
.page-download-center-android-app__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-download-center-android-app__btn i {
  margin-right: 10px;
}

.page-download-center-android-app__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Dark blue */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-download-center-android-app__btn--primary:hover {
  background-color: #FFC107; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-download-center-android-app__btn--secondary {
  background-color: #1A237E; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
}

.page-download-center-android-app__btn--secondary:hover {
  background-color: #283593; /* Slightly lighter blue */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 35, 126, 0.6);
}

.page-download-center-android-app__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-download-center-android-app__btn--animated {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 215, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* Sections */
.page-download-center-android-app__section {
  padding: 60px 0;
  background-color: #000000;
}

.page-download-center-android-app__section:nth-of-type(even) {
  background-color: #0d0d0d; /* Slightly lighter dark for alternating sections */
}

.page-download-center-android-app__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-download-center-android-app__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #1A237E;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-download-center-android-app__description {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #BDBDBD;
}

/* Why Download Section */
.page-download-center-android-app__why-download .page-download-center-android-app__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-download-center-android-app__feature-item {
  background-color: #1A237E; /* Dark blue */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-download-center-android-app__feature-item:hover {
  transform: translateY(-10px);
  background-color: #283593; /* Slightly lighter blue on hover */
}

.page-download-center-android-app__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-download-center-android-app__feature-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-download-center-android-app__feature-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
}

/* Download Guide Section */
.page-download-center-android-app__download-guide .page-download-center-android-app__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.page-download-center-android-app__step-item {
  background-color: #1A237E; /* Dark blue */
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-download-center-android-app__step-number {
  width: 50px;
  height: 50px;
  background-color: #FFD700; /* Gold */
  color: #1A237E; /* Dark blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-download-center-android-app__step-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-download-center-android-app__step-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-download-center-android-app__step-qr, .page-download-center-android-app__step-image {
  max-width: 180px;
  height: auto;
  border-radius: 8px;
  margin-top: 15px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

/* Features App Section */
.page-download-center-android-app__features-app .page-download-center-android-app__content-row {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-download-center-android-app__features-app .page-download-center-android-app__content-text {
  flex: 1;
  min-width: 300px;
}

.page-download-center-android-app__features-app .page-download-center-android-app__content-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-download-center-android-app__features-app .page-download-center-android-app__content-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-download-center-android-app__features-app .page-download-center-android-app__content-text ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-download-center-android-app__features-app .page-download-center-android-app__content-text ul li strong {
  color: #FFD700;
}

.page-download-center-android-app__features-app .page-download-center-android-app__content-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-download-center-android-app__image-full {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid #1A237E;
}

/* FAQ Section */
.page-download-center-android-app__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-download-center-android-app__faq-item {
  background-color: #1A237E; /* Dark blue */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-download-center-android-app__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-download-center-android-app__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

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

.page-download-center-android-app__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

/* Exclusive Benefits Section */
.page-download-center-android-app__exclusive-benefits .page-download-center-android-app__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-download-center-android-app__benefit-card {
  background-color: #1A237E; /* Dark blue */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-download-center-android-app__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-download-center-android-app__benefit-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-download-center-android-app__benefit-card p {
  font-size: 1em;
  line-height: 1.7;
  color: #E0E0E0;
}

.page-download-center-android-app__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-download-center-android-app__cta-bottom p {
  font-size: 1.2em;
  color: #BDBDBD;
  margin-bottom: 30px;
}

/* Platform Info Section */
.page-download-center-android-app__platform-info .page-download-center-android-app__content-row {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-download-center-android-app__platform-info .page-download-center-android-app__content-row--reverse {
  flex-direction: row-reverse;
}

.page-download-center-android-app__platform-info .page-download-center-android-app__content-text {
  flex: 1;
  min-width: 300px;
}

.page-download-center-android-app__platform-info .page-download-center-android-app__content-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-download-center-android-app__platform-info .page-download-center-android-app__content-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

/* Call to Action Bottom */
.page-download-center-android-app__call-to-action {
  background: linear-gradient(45deg, #1A237E, #3F51B5); /* Dark blue to medium blue */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-download-center-android-app__call-to-action .page-download-center-android-app__section-title {
  color: #FFD700;
}

.page-download-center-android-app__call-to-action .page-download-center-android-app__description {
  color: #E0E0E0;
  margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-download-center-android-app__title {
    font-size: 2.8em;
  }
  .page-download-center-android-app__subtitle {
    font-size: 1.3em;
  }
  .page-download-center-android-app__features-grid, .page-download-center-android-app__download-guide .page-download-center-android-app__steps-grid, .page-download-center-android-app__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-download-center-android-app__features-app .page-download-center-android-app__content-row,
  .page-download-center-android-app__platform-info .page-download-center-android-app__content-row {
    flex-direction: column;
    gap: 30px;
  }
  .page-download-center-android-app__platform-info .page-download-center-android-app__content-row--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-download-center-android-app__hero {
    padding: 80px 0;
  }
  .page-download-center-android-app__title {
    font-size: 2.2em;
  }
  .page-download-center-android-app__subtitle {
    font-size: 1.1em;
  }
  .page-download-center-android-app__section {
    padding: 40px 0;
  }
  .page-download-center-android-app__section-title {
    font-size: 2em;
  }
  .page-download-center-android-app__download-actions {
    flex-direction: column;
  }
  .page-download-center-android-app__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-download-center-android-app__title {
    font-size: 1.8em;
  }
  .page-download-center-android-app__subtitle {
    font-size: 1em;
  }
  .page-download-center-android-app__btn {
    width: 100%;
    max-width: 280px;
  }
  .page-download-center-android-app__qr-code-wrapper {
    width: 100%;
    max-width: 280px;
  }
  .page-download-center-android-app__section-title {
    font-size: 1.8em;
  }
  .page-download-center-android-app__feature-title, .page-download-center-android-app__step-title, .page-download-center-android-app__faq-question, .page-download-center-android-app__benefit-title {
    font-size: 1.3em;
  }
  .page-download-center-android-app__description, .page-download-center-android-app__feature-item p, .page-download-center-android-app__step-item p, .page-download-center-android-app__faq-answer, .page-download-center-android-app__benefit-card p, .page-download-center-android-app__content-text p, .page-download-center-android-app__content-text ul li {
    font-size: 0.95em;
  }
}