/* style/download-center-mobile-web-access.css */
.page-download-center-mobile-web-access {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark gray for general text on light background */
  background-color: #f8f8f8;
}

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

.page-download-center-mobile-web-access__hero {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-download-center-mobile-web-access__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for main title */
  font-weight: bold;
}

.page-download-center-mobile-web-access__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-mobile-web-access__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-download-center-mobile-web-access__btn {
  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;
  white-space: nowrap;
}

.page-download-center-mobile-web-access__btn--primary {
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue text */
  border: 2px solid #FFCC00;
}

.page-download-center-mobile-web-access__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-download-center-mobile-web-access__btn--secondary {
  background-color: transparent;
  color: #FFCC00; /* Gold text */
  border: 2px solid #FFCC00;
}

.page-download-center-mobile-web-access__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-download-center-mobile-web-access__introduction,
.page-download-center-mobile-web-access__how-to-access,
.page-download-center-mobile-web-access__benefits,
.page-download-center-mobile-web-access__game-diversity,
.page-download-center-mobile-web-access__faq,
.page-download-center-mobile-web-access__call-to-action--final {
  padding: 60px 0;
}

.page-download-center-mobile-web-access__introduction,
.page-download-center-mobile-web-access__how-to-access,
.page-download-center-mobile-web-access__game-diversity,
.page-download-center-mobile-web-access__faq {
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-download-center-mobile-web-access__section-title {
  font-size: 2.2em;
  color: #003366; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-download-center-mobile-web-access__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Gold underline */
  border-radius: 2px;
}

.page-download-center-mobile-web-access__introduction p,
.page-download-center-mobile-web-access__how-to-access p,
.page-download-center-mobile-web-access__game-diversity p,
.page-download-center-mobile-web-access__faq p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #555555;
}

.page-download-center-mobile-web-access__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-download-center-mobile-web-access__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-download-center-mobile-web-access__list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-download-center-mobile-web-access__list li {
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
  color: #555555;
}

.page-download-center-mobile-web-access__list li strong {
  color: #003366;
}

.page-download-center-mobile-web-access__list li::before {
  content: '✔️'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #FFCC00;
  font-weight: bold;
}

.page-download-center-mobile-web-access__how-to-access ol {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-download-center-mobile-web-access__how-to-access ol li {
  margin-bottom: 20px;
  padding-left: 0;
  list-style-position: inside;
  font-size: 1.05em;
  color: #555555;
}

.page-download-center-mobile-web-access__how-to-access ol li::before {
  content: none;
}

.page-download-center-mobile-web-access__text-link {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-download-center-mobile-web-access__text-link:hover {
  color: #FFCC00;
}

.page-download-center-mobile-web-access__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #f0f4f8;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.page-download-center-mobile-web-access__call-to-action p {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-download-center-mobile-web-access__list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0;
}

.page-download-center-mobile-web-access__icon-box {
  text-align: center;
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-download-center-mobile-web-access__icon-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-download-center-mobile-web-access__icon-box h3 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 15px;
}

.page-download-center-mobile-web-access__icon-box p {
  font-size: 1em;
  color: #666666;
  flex-grow: 1;
}

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

.page-download-center-mobile-web-access__category-item {
  text-align: center;
  background-color: #fdfdfd;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #FFCC00;
}

.page-download-center-mobile-web-access__category-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-download-center-mobile-web-access__category-item h3 {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-download-center-mobile-web-access__category-item p {
  font-size: 0.95em;
  color: #666666;
}

.page-download-center-mobile-web-access__faq-item {
  background-color: #fdfdfd;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  border-left: 5px solid #003366;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-download-center-mobile-web-access__faq-item h3 {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-download-center-mobile-web-access__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-download-center-mobile-web-access__faq-item.active h3::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-download-center-mobile-web-access__faq-item p {
  display: none;
  margin-top: 15px;
  padding-left: 10px;
  border-left: 2px solid #eee;
  color: #555555;
}

.page-download-center-mobile-web-access__faq-item.active p {
  display: block;
}

.page-download-center-mobile-web-access__call-to-action--final {
  background-color: #003366; /* Dark blue background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  margin-top: 40px;
}

.page-download-center-mobile-web-access__call-to-action--final .page-download-center-mobile-web-access__section-title {
  color: #FFCC00; /* Gold title on dark blue background */
}

.page-download-center-mobile-web-access__call-to-action--final .page-download-center-mobile-web-access__section-title::after {
  background-color: #ffffff; /* White underline */
}

.page-download-center-mobile-web-access__call-to-action--final p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-download-center-mobile-web-access__final-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-download-center-mobile-web-access__disclaimer {
  font-size: 0.9em;
  margin-top: 50px;
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-download-center-mobile-web-access__hero-title {
    font-size: 2em;
  }

  .page-download-center-mobile-web-access__hero-description,
  .page-download-center-mobile-web-access__call-to-action p {
    font-size: 1em;
  }

  .page-download-center-mobile-web-access__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-download-center-mobile-web-access__section-title {
    font-size: 1.8em;
  }

  .page-download-center-mobile-web-access__list--grid,
  .page-download-center-mobile-web-access__game-categories {
    grid-template-columns: 1fr;
  }

  .page-download-center-mobile-web-access__hero-actions,
  .page-download-center-mobile-web-access__final-actions {
    flex-direction: column;
    align-items: center;
  }

  .page-download-center-mobile-web-access__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-download-center-mobile-web-access__hero {
    padding: 60px 0;
  }

  .page-download-center-mobile-web-access__hero-title {
    font-size: 1.7em;
  }

  .page-download-center-mobile-web-access__section-title {
    font-size: 1.5em;
  }

  .page-download-center-mobile-web-access__introduction,
  .page-download-center-mobile-web-access__how-to-access,
  .page-download-center-mobile-web-access__benefits,
  .page-download-center-mobile-web-access__game-diversity,
  .page-download-center-mobile-web-access__faq,
  .page-download-center-mobile-web-access__call-to-action--final {
    padding: 40px 0;
  }

  .page-download-center-mobile-web-access__faq-item {
    padding: 20px;
  }

  .page-download-center-mobile-web-access__faq-item h3 {
    font-size: 1.1em;
  }
}