/* style/download-center-mobile-app-download.css */
.page-download-center-mobile-app-download {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for main text, high contrast */
  background-color: #f8f8f8; /* Light background */
}

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

.page-download-center-mobile-app-download__hero {
  background: linear-gradient(135deg, #FFD700, #00BFFF); /* Gold to Deep Sky Blue gradient */
  color: #ffffff; /* White text on gradient background */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-mobile-app-download__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Dark overlay for better text contrast */
  z-index: 1;
}

.page-download-center-mobile-app-download__hero .page-download-center-mobile-app-download__container {
  position: relative;
  z-index: 2;
}

.page-download-center-mobile-app-download__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff; /* White text for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-download-center-mobile-app-download__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0; /* Slightly off-white for subtitle */
}

.page-download-center-mobile-app-download__hero-image {
  max-width: 600px;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-download-center-mobile-app-download__download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-download-center-mobile-app-download__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
}

.page-download-center-mobile-app-download__button--ios {
  background-color: #ffffff; /* White button */
  color: #00BFFF; /* Deep Sky Blue text */
  border: 2px solid #00BFFF;
}

.page-download-center-mobile-app-download__button--ios:hover {
  background-color: #00BFFF;
  color: #ffffff;
}

.page-download-center-mobile-app-download__button--android {
  background-color: #FFD700; /* Gold button */
  color: #333333; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-download-center-mobile-app-download__button--android:hover {
  background-color: #e6c200; /* Darker gold */
  color: #ffffff;
}

.page-download-center-mobile-app-download__section {
  padding: 60px 0;
  text-align: center;
}

.page-download-center-mobile-app-download__section:nth-of-type(even) {
  background-color: #e0f2f7; /* Very light blue background */
}

.page-download-center-mobile-app-download__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #00BFFF; /* Deep Sky Blue for titles */
}

.page-download-center-mobile-app-download__section-description {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555555;
}

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

.page-download-center-mobile-app-download__feature-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-download-center-mobile-app-download__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-download-center-mobile-app-download__feature-item p {
  color: #444444;
}

.page-download-center-mobile-app-download__feature-image {
  max-width: 800px;
  height: auto;
  display: block;
  margin: 60px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-download-center-mobile-app-download__guide-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-download-center-mobile-app-download__guide-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-download-center-mobile-app-download__guide-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-download-center-mobile-app-download__guide-card-title {
  font-size: 2em;
  color: #FFD700; /* Gold for guide titles */
  margin-bottom: 25px;
  text-align: center;
}

.page-download-center-mobile-app-download__guide-list {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 30px;
  color: #444444;
}

.page-download-center-mobile-app-download__guide-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-download-center-mobile-app-download__guide-list li strong {
  color: #00BFFF;
}

.page-download-center-mobile-app-download__qr-code-wrapper {
  text-align: center;
  margin-top: 30px;
}

.page-download-center-mobile-app-download__qr-code {
  width: 180px;
  height: 180px;
  border: 5px solid #00BFFF;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-app-download__button--ios-small,
.page-download-center-mobile-app-download__button--android-small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 30px;
}

.page-download-center-mobile-app-download__feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .page-download-center-mobile-app-download__feature-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-download-center-mobile-app-download__feature-detail-item {
  text-align: left;
}

.page-download-center-mobile-app-download__feature-detail-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-app-download__feature-detail-title {
  font-size: 1.8em;
  color: #00BFFF; /* Deep Sky Blue for feature detail titles */
  margin-bottom: 15px;
}

.page-download-center-mobile-app-download__feature-detail-item p {
  color: #444444;
}

.page-download-center-mobile-app-download__section--responsible-gaming {
  background-color: #f0f0f0;
  padding: 80px 0;
}

.page-download-center-mobile-app-download__section--responsible-gaming .page-download-center-mobile-app-download__section-description {
  font-size: 1.15em;
  line-height: 1.8;
  color: #333333;
}

.page-download-center-mobile-app-download__text-link {
  color: #00BFFF; /* Deep Sky Blue for text links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-download-center-mobile-app-download__text-link:hover {
  color: #FFD700; /* Gold on hover */
  text-decoration: underline;
}

.page-download-center-mobile-app-download__faq-items {
  margin-top: 40px;
  text-align: left;
}

.page-download-center-mobile-app-download__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-download-center-mobile-app-download__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-download-center-mobile-app-download__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #00BFFF;
}

.page-download-center-mobile-app-download__faq-question.active::after {
  content: '-';
}

.page-download-center-mobile-app-download__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-download-center-mobile-app-download__faq-question.active + .page-download-center-mobile-app-download__faq-answer {
  display: block;
}

.page-download-center-mobile-app-download__cta-final {
  background: linear-gradient(45deg, #00BFFF, #FFD700); /* Deep Sky Blue to Gold gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-mobile-app-download__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-download-center-mobile-app-download__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-download-center-mobile-app-download .highlight {
  font-weight: bold;
  color: #FFD700; /* Gold highlight for keywords on dark backgrounds */
}

.page-download-center-mobile-app-download__section:nth-of-type(odd) .highlight {
  color: #00BFFF; /* Deep Sky Blue highlight for keywords on light backgrounds */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-download-center-mobile-app-download__hero-title {
    font-size: 2.8em;
  }
  .page-download-center-mobile-app-download__hero-subtitle {
    font-size: 1.1em;
  }
  .page-download-center-mobile-app-download__section-title {
    font-size: 2.2em;
  }
  .page-download-center-mobile-app-download__feature-detail-title {
    font-size: 1.6em;
  }
  .page-download-center-mobile-app-download__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-download-center-mobile-app-download__hero {
    padding: 60px 0;
  }
  .page-download-center-mobile-app-download__hero-title {
    font-size: 2.2em;
  }
  .page-download-center-mobile-app-download__hero-subtitle {
    font-size: 1em;
  }
  .page-download-center-mobile-app-download__download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-download-center-mobile-app-download__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-download-center-mobile-app-download__section {
    padding: 40px 0;
  }
  .page-download-center-mobile-app-download__section-title {
    font-size: 1.8em;
  }
  .page-download-center-mobile-app-download__guide-card {
    padding: 30px;
  }
  .page-download-center-mobile-app-download__guide-card-title {
    font-size: 1.6em;
  }
  .page-download-center-mobile-app-download__feature-detail-title {
    font-size: 1.4em;
  }
  .page-download-center-mobile-app-download__faq-question {
    font-size: 1.1em;
  }
  .page-download-center-mobile-app-download__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .page-download-center-mobile-app-download__hero-title {
    font-size: 1.8em;
  }
  .page-download-center-mobile-app-download__section-title {
    font-size: 1.5em;
  }
  .page-download-center-mobile-app-download__feature-title {
    font-size: 1.3em;
  }
  .page-download-center-mobile-app-download__guide-card-title {
    font-size: 1.4em;
  }
  .page-download-center-mobile-app-download__cta-title {
    font-size: 1.8em;
  }
  .page-download-center-mobile-app-download__button {
    width: 90%;
  }
  .page-download-center-mobile-app-download__hero-image {
    max-width: 90%;
  }
  .page-download-center-mobile-app-download__feature-image {
    max-width: 90%;
  }
}