/* style/app-download-mobile-web.css */
.page-app-download-mobile-web {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa; /* Light gray background */
}

.page-app-download-mobile-web__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-app-download-mobile-web__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.page-app-download-mobile-web__btn--primary {
  background-color: #007bff; /* Primary blue */
  color: #ffffff;
}

.page-app-download-mobile-web__btn--primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-app-download-mobile-web__btn--secondary {
  background-color: #ffc107; /* Secondary gold */
  color: #333333;
}

.page-app-download-mobile-web__btn--secondary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-app-download-mobile-web__btn--small {
  padding: 8px 18px;
  font-size: 0.9rem;
}

.page-app-download-mobile-web__btn--large {
  padding: 15px 30px;
  font-size: 1.1rem;
}

/* Hero Section */
.page-app-download-mobile-web__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-mobile-web__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,light_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-app-download-mobile-web__hero-section .page-app-download-mobile-web__container {
  position: relative;
  z-index: 1;
}

.page-app-download-mobile-web__hero-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.page-app-download-mobile-web__hero-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-app-download-mobile-web__hero-actions .page-app-download-mobile-web__btn {
  margin: 0 10px;
}

/* Content Sections */
.page-app-download-mobile-web__content-section {
  padding: 60px 0;
}

.page-app-download-mobile-web__content-section:nth-of-type(even) {
  background-color: #ffffff;
}

.page-app-download-mobile-web__section-title {
  font-size: 2.2rem;
  color: #0056b3; /* Darker blue for titles */
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-app-download-mobile-web__section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

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

.page-app-download-mobile-web__benefit-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #ffc107;
}

.page-app-download-mobile-web__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-app-download-mobile-web__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-app-download-mobile-web__benefit-title {
  font-size: 1.4rem;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-app-download-mobile-web__benefit-description {
  font-size: 0.95rem;
  color: #666;
}

/* How-To Section */
.page-app-download-mobile-web__step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-mobile-web__step-item {
  background-color: #f0f8ff; /* Light blue background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-mobile-web__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #007bff;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.page-app-download-mobile-web__step-title {
  font-size: 1.5rem;
  color: #0056b3;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-app-download-mobile-web__step-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.page-app-download-mobile-web__how-to-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Games Section */
.page-app-download-mobile-web__game-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-app-download-mobile-web__game-list li {
  background-color: #ffffff;
  border-left: 5px solid #007bff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.page-app-download-mobile-web__game-list li:hover {
  transform: translateX(5px);
}

.page-app-download-mobile-web__game-title {
  font-size: 1.6rem;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-app-download-mobile-web__game-list p {
  color: #444;
  font-size: 1rem;
}

.page-app-download-mobile-web__games-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Advantages Section */
.page-app-download-mobile-web__advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-mobile-web__advantage-item {
  background-color: #fff3cd; /* Light gold background */
  border: 1px solid #ffeeba;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-app-download-mobile-web__advantage-title {
  font-size: 1.4rem;
  color: #856404; /* Dark gold text */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-app-download-mobile-web__advantage-description {
  font-size: 0.95rem;
  color: #666;
}

/* Comparison Section */
.page-app-download-mobile-web__comparison-table {
  margin-top: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-app-download-mobile-web__table-header,
.page-app-download-mobile-web__table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid #eee;
}

.page-app-download-mobile-web__table-header {
  background-color: #007bff;
  color: #ffffff;
  font-weight: bold;
}

.page-app-download-mobile-web__table-header .page-app-download-mobile-web__table-cell {
  padding: 15px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.page-app-download-mobile-web__table-header .page-app-download-mobile-web__table-cell:last-child {
  border-right: none;
}

.page-app-download-mobile-web__table-row:nth-child(odd) {
  background-color: #f9f9f9;
}

.page-app-download-mobile-web__table-row:nth-child(even) {
  background-color: #ffffff;
}

.page-app-download-mobile-web__table-row:last-child {
  border-bottom: none;
}

.page-app-download-mobile-web__table-cell {
  padding: 15px 20px;
  border-right: 1px solid #eee;
  color: #333;
}

.page-app-download-mobile-web__table-cell:last-child {
  border-right: none;
}

.page-app-download-mobile-web__comparison-conclusion {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0 auto;
  color: #555;
}

.page-app-download-mobile-web__cta-app-download {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #e6f7ff; /* Lighter blue */
  border-radius: 10px;
  border: 1px solid #b3e0ff;
}

.page-app-download-mobile-web__cta-app-download p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

/* Responsibility Section */
.page-app-download-mobile-web__section--responsibility {
  text-align: center;
  background-color: #f0f0f0;
}

.page-app-download-mobile-web__section--responsibility p {
  max-width: 900px;
  margin: 20px auto;
  color: #555;
  font-size: 1rem;
}

.page-app-download-mobile-web__responsibility-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0 auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-app-download-mobile-web__faq-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-app-download-mobile-web__faq-question {
  font-size: 1.3rem;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-app-download-mobile-web__faq-answer {
  font-size: 1rem;
  color: #444;
}

/* Final CTA Section */
.page-app-download-mobile-web__cta-final {
  background: linear-gradient(135deg, #007bff, #ffc107); /* Gradient background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-mobile-web__cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_geometric,colorful,dynamic]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-app-download-mobile-web__cta-final .page-app-download-mobile-web__container {
  position: relative;
  z-index: 1;
}

.page-app-download-mobile-web__cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.page-app-download-mobile-web__cta-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-app-download-mobile-web__cta-actions .page-app-download-mobile-web__btn {
  margin: 0 15px;
}

.page-app-download-mobile-web__cta-image {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-app-download-mobile-web__hero-title {
    font-size: 2.2rem;
  }
  .page-app-download-mobile-web__section-title {
    font-size: 1.8rem;
  }
  .page-app-download-mobile-web__table-header,
  .page-app-download-mobile-web__table-row {
    grid-template-columns: 1fr 1fr;
  }
  .page-app-download-mobile-web__table-header .page-app-download-mobile-web__table-cell:first-child {
    grid-column: span 2;
    text-align: center;
  }
  .page-app-download-mobile-web__table-row .page-app-download-mobile-web__table-cell:first-child {
    grid-column: span 2;
    font-weight: bold;
    background-color: #f0f8ff;
    border-right: none;
  }
  .page-app-download-mobile-web__cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-app-download-mobile-web__hero-section,
  .page-app-download-mobile-web__cta-final {
    padding: 60px 0;
  }
  .page-app-download-mobile-web__hero-title {
    font-size: 1.8rem;
  }
  .page-app-download-mobile-web__hero-description {
    font-size: 1rem;
  }
  .page-app-download-mobile-web__hero-actions .page-app-download-mobile-web__btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
  .page-app-download-mobile-web__section-title {
    font-size: 1.6rem;
  }
  .page-app-download-mobile-web__section-intro {
    font-size: 0.95rem;
  }
  .page-app-download-mobile-web__benefit-item,
  .page-app-download-mobile-web__step-item,
  .page-app-download-mobile-web__advantage-item {
    padding: 20px;
  }
  .page-app-download-mobile-web__game-title {
    font-size: 1.4rem;
  }
  .page-app-download-mobile-web__faq-question {
    font-size: 1.2rem;
  }
  .page-app-download-mobile-web__cta-title {
    font-size: 1.8rem;
  }
  .page-app-download-mobile-web__cta-actions .page-app-download-mobile-web__btn {
    display: block;
    margin: 15px auto;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-app-download-mobile-web__hero-title {
    font-size: 1.5rem;
  }
  .page-app-download-mobile-web__hero-description {
    font-size: 0.9rem;
  }
  .page-app-download-mobile-web__section-title {
    font-size: 1.4rem;
  }
  .page-app-download-mobile-web__benefit-grid,
  .page-app-download-mobile-web__step-grid,
  .page-app-download-mobile-web__advantage-grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-mobile-web__cta-title {
    font-size: 1.6rem;
  }
}