.page-index-mobile-experience {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-index-mobile-experience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-mobile-experience__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-mobile-experience__section:nth-child(even) {
  background-color: #e6e6e6;
}

.page-index-mobile-experience__section-title {
  font-size: 2.5em;
  color: #000080; /* Dark blue */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-index-mobile-experience__section-title .highlight {
  color: #FFD700; /* Bright gold */
}

.page-index-mobile-experience__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index-mobile-experience__hero-section {
  background: linear-gradient(135deg, #000080, #3a3a9a); /* Dark blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-index-mobile-experience__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Bright gold for title */
}

.page-index-mobile-experience__hero-title .highlight {
  color: #fff;
}

.page-index-mobile-experience__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-index-mobile-experience__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-mobile-experience__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-index-mobile-experience__button--primary {
  background-color: #FFD700; /* Bright gold */
  color: #000080; /* Dark blue */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-mobile-experience__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-mobile-experience__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Bright gold */
  border: 2px solid #FFD700;
}

.page-index-mobile-experience__button--secondary:hover {
  background-color: #FFD700;
  color: #000080; /* Dark blue */
  transform: translateY(-2px);
}

.page-index-mobile-experience__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-index-mobile-experience__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-index-mobile-experience__features {
  background-color: #f8f8f8;
}

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

.page-index-mobile-experience__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-mobile-experience__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-mobile-experience__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 128, 0.3)); /* Dark blue shadow */
}

.page-index-mobile-experience__feature-heading {
  font-size: 1.5em;
  color: #000080; /* Dark blue */
  margin-bottom: 15px;
}

.page-index-mobile-experience__feature-description {
  font-size: 1em;
  color: #555;
}

.page-index-mobile-experience__download {
  background: linear-gradient(135deg, #000080, #000050); /* Darker blue gradient */
  color: #fff;
}

.page-index-mobile-experience__download-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-index-mobile-experience__download-text {
  flex: 1;
  min-width: 300px;
}

.page-index-mobile-experience__download-text .page-index-mobile-experience__section-title {
  color: #FFD700; /* Bright gold */
  text-align: left;
}

.page-index-mobile-experience__download-text .page-index-mobile-experience__section-title::after {
  left: 0;
  transform: translateX(0);
  background-color: #FFD700;
}

.page-index-mobile-experience__download-text p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-index-mobile-experience__download-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index-mobile-experience__download-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-index-mobile-experience__platform-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.page-index-mobile-experience__qr-codes {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
  justify-content: center;
}

.page-index-mobile-experience__qr-item {
  text-align: center;
}

.page-index-mobile-experience__qr-image {
  width: 150px;
  height: 150px;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-mobile-experience__qr-item p {
  margin-top: 10px;
  font-size: 0.9em;
  color: #f0f0f0;
}

.page-index-mobile-experience__download-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-index-mobile-experience__app-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transform: rotate(-5deg);
  transition: transform 0.5s ease;
}

.page-index-mobile-experience__app-screenshot:hover {
  transform: rotate(0deg) scale(1.02);
}

.page-index-mobile-experience__web-access-intro {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1em;
  color: #555;
}

.page-index-mobile-experience__web-access-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-mobile-experience__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-index-mobile-experience__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(255, 215, 0, 0.3)); /* Gold shadow */
}

.page-index-mobile-experience__step-item h3 {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 10px;
}

.page-index-mobile-experience__step-item h3 a {
  color: #000080;
  text-decoration: none;
}

.page-index-mobile-experience__step-item h3 a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-index-mobile-experience__step-item p {
  color: #555;
}

.page-index-mobile-experience__game-intro {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1em;
  color: #555;
}

.page-index-mobile-experience__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-mobile-experience__game-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-mobile-experience__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-mobile-experience__game-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-mobile-experience__game-card h3 {
  font-size: 1.6em;
  color: #000080;
  margin-bottom: 10px;
}

.page-index-mobile-experience__game-card h3 a {
  color: #000080;
  text-decoration: none;
}

.page-index-mobile-experience__game-card h3 a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-index-mobile-experience__game-card p {
  color: #555;
  margin-bottom: 20px;
}

.page-index-mobile-experience__promo-intro {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1em;
  color: #555;
}

.page-index-mobile-experience__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-mobile-experience__promo-card {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-mobile-experience__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-mobile-experience__promo-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-index-mobile-experience__promo-card h3 {
  font-size: 1.6em;
  color: #000080;
  margin-bottom: 10px;
}

.page-index-mobile-experience__promo-card p {
  color: #555;
  margin-bottom: 20px;
}

.page-index-mobile-experience__faq {
  text-align: left;
}

.page-index-mobile-experience__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-mobile-experience__faq-item h3 {
  color: #000080;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index-mobile-experience__faq-item p {
  color: #444;
  font-size: 1em;
}

.page-index-mobile-experience__cta-final {
  background: linear-gradient(135deg, #FFD700, #b39700); /* Gold gradient */
  color: #000080; /* Dark blue text */
  padding: 80px 0;
}

.page-index-mobile-experience__cta-final .page-index-mobile-experience__section-title {
  color: #000080; /* Dark blue */
}

.page-index-mobile-experience__cta-final .page-index-mobile-experience__section-title::after {
  background-color: #000080;
}

.page-index-mobile-experience__cta-final p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333;
}

.page-index-mobile-experience__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-mobile-experience__hero-title {
    font-size: 3em;
  }
  .page-index-mobile-experience__section-title {
    font-size: 2em;
  }
  .page-index-mobile-experience__download-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index-mobile-experience__download-text .page-index-mobile-experience__section-title {
    text-align: center;
  }
  .page-index-mobile-experience__download-text .page-index-mobile-experience__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-index-mobile-experience__app-screenshot {
    transform: rotate(0deg);
  }
}

@media (max-width: 768px) {
  .page-index-mobile-experience__hero-title {
    font-size: 2.5em;
  }
  .page-index-mobile-experience__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-mobile-experience__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-mobile-experience__button {
    width: 80%;
    max-width: 300px;
  }
  .page-index-mobile-experience__section-title {
    font-size: 1.8em;
  }
  .page-index-mobile-experience__feature-item, .page-index-mobile-experience__game-card, .page-index-mobile-experience__promo-card, .page-index-mobile-experience__step-item {
    padding: 20px;
  }
  .page-index-mobile-experience__qr-codes {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .page-index-mobile-experience__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-mobile-experience__hero-title {
    font-size: 2em;
  }
  .page-index-mobile-experience__hero-subtitle {
    font-size: 1em;
  }
  .page-index-mobile-experience__button {
    width: 90%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-mobile-experience__section {
    padding: 40px 0;
  }
  .page-index-mobile-experience__section-title {
    font-size: 1.5em;
  }
  .page-index-mobile-experience__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-index-mobile-experience__qr-image {
    width: 120px;
    height: 120px;
  }
  .page-index-mobile-experience__cta-final p {
    font-size: 1em;
  }
}