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

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

.page-mobile-app-section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-mobile-app-section:nth-of-type(odd) {
  background-color: #fdfdfd;
}

.page-mobile-app h1,
.page-mobile-app h2,
.page-mobile-app h3 {
  color: #000080; /* Deep Blue */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-mobile-app h1 {
  font-size: 3em;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-mobile-app h2 {
  font-size: 2.5em;
  color: #000080;
}

.page-mobile-app h3 {
  font-size: 1.8em;
  color: #000080;
  margin-bottom: 15px;
}

.page-mobile-app p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-mobile-app ul {
  list-style: disc inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-mobile-app ol {
  list-style: decimal inside;
  margin-bottom: 15px;
  padding-left: 20px;
}

.page-mobile-app li {
  margin-bottom: 8px;
}

.page-mobile-app a {
  color: #000080;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-mobile-app a:hover {
  color: #FFD700;
}

.page-mobile-app-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-mobile-app-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #000080; /* Deep Blue */
  border: 2px solid #FFD700;
}

.page-mobile-app-btn-primary:hover {
  background-color: #e6c200;
  color: #000066;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-mobile-app-btn-secondary {
  background-color: transparent;
  color: #000080; /* Deep Blue */
  border: 2px solid #000080;
}

.page-mobile-app-btn-secondary:hover {
  background-color: #000080;
  color: #FFD700;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-mobile-app-btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-mobile-app-center-text {
  text-align: center;
}

/* Hero Section */
.page-mobile-app-hero {
  background: linear-gradient(135deg, #FFD700, #000080);
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-mobile-app-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-mobile-app-hero-content {
  max-width: 800px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-mobile-app-hero h1 {
  font-size: 3.5em;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.page-mobile-app-hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-align: center;
}

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

.page-mobile-app-hero-buttons .page-mobile-app-btn-primary {
  background-color: #ffffff;
  color: #000080;
  border-color: #ffffff;
}

.page-mobile-app-hero-buttons .page-mobile-app-btn-primary:hover {
  background-color: #FFD700;
  color: #000080;
  border-color: #FFD700;
}

.page-mobile-app-hero-buttons .page-mobile-app-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-mobile-app-hero-buttons .page-mobile-app-btn-secondary:hover {
  background-color: #000066;
  color: #FFD700;
  border-color: #000066;
}

.page-mobile-app-hero-image {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
  z-index: 1;
}

.page-mobile-app-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

/* Why Download Section */
.page-mobile-app-why-download h2 {
  margin-bottom: 40px;
}

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

.page-mobile-app-feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #fcfcfc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-mobile-app-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-mobile-app-feature-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-mobile-app-feature-item h3 {
  color: #000080;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-mobile-app-feature-item p {
  font-size: 1em;
  color: #555555;
  text-align: center;
}

/* How to Download Section */
.page-mobile-app-how-to-download ol {
  text-align: left;
  padding-left: 20px;
}

.page-mobile-app-download-platform {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-mobile-app-platform-item {
  flex: 1 1 45%;
  min-width: 300px;
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-mobile-app-platform-item h3 {
  margin-bottom: 20px;
  color: #000080;
  font-size: 1.8em;
}

.page-mobile-app-platform-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-mobile-app-platform-item ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444444;
  text-align: left;
}

.page-mobile-app-platform-item ol li strong {
  color: #000080;
}

/* Installation Guide Section */
.page-mobile-app-installation-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-mobile-app-installation-item {
  flex: 1 1 45%;
  min-width: 300px;
  background-color: #fcfcfc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-mobile-app-installation-item h3 {
  margin-bottom: 20px;
  color: #000080;
  font-size: 1.8em;
}

.page-mobile-app-installation-item ol li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #444444;
  text-align: left;
}

.page-mobile-app-installation-item ol li strong {
  color: #000080;
}

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

.page-mobile-app-game-card {
  background-color: #fcfcfc;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-mobile-app-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-mobile-app-game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-mobile-app-game-card h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px;
  color: #000080;
  text-align: left;
}

.page-mobile-app-game-card h3 a {
  color: #000080;
}

.page-mobile-app-game-card h3 a:hover {
  color: #FFD700;
}

.page-mobile-app-game-card p {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
  text-align: left;
}

/* Benefits Section */
.page-mobile-app-benefits ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-mobile-app-benefits ul li {
  background-color: #fcfcfc;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #444444;
}

.page-mobile-app-benefits ul li strong {
  color: #000080;
}

.page-mobile-app-cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-mobile-app-cta-bottom p {
  font-size: 1.3em;
  color: #000080;
  margin-bottom: 30px;
}

/* Register Promo Section */
.page-mobile-app-register-promo {
  background: linear-gradient(135deg, #000080, #000066);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-mobile-app-register-promo h2 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-mobile-app-register-promo p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-mobile-app-register-promo .page-mobile-app-btn-primary {
  background-color: #FFD700;
  color: #000080;
  border-color: #FFD700;
}

.page-mobile-app-register-promo .page-mobile-app-btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

/* FAQ Section */
.page-mobile-app-faq .faq-list {
  margin-top: 40px;
}

.page-mobile-app-faq .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-mobile-app-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fcfcfc;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-mobile-app-faq .faq-question:hover {
  background: #f5f5f5;
}

.page-mobile-app-faq .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #000080;
  text-align: left;
}

.page-mobile-app-faq .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-mobile-app-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #000080;
}

.page-mobile-app-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  background-color: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-mobile-app-faq .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px 20px;
}

.page-mobile-app-faq .faq-answer p {
  margin: 0;
  color: #555555;
  text-align: left;
}

/* Conclusion Section */
.page-mobile-app-conclusion {
  padding-bottom: 80px;
}

.page-mobile-app-conclusion h2 {
  margin-bottom: 25px;
}

.page-mobile-app-conclusion p {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-mobile-app-hero h1 {
    font-size: 3em;
  }
  .page-mobile-app h2 {
    font-size: 2em;
  }
  .page-mobile-app h3 {
    font-size: 1.6em;
  }
  .page-mobile-app-hero p {
    font-size: 1.1em;
  }
  .page-mobile-app-features-grid, .page-mobile-app-games-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-mobile-app-section {
    padding: 40px 0;
  }
  .page-mobile-app-hero {
    padding: 60px 0;
  }
  .page-mobile-app-hero h1 {
    font-size: 2.5em;
  }
  .page-mobile-app h2 {
    font-size: 1.8em;
  }
  .page-mobile-app h3 {
    font-size: 1.4em;
  }
  .page-mobile-app-hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-mobile-app-btn {
    width: 100%;
    max-width: 300px;
  }
  .page-mobile-app-platform-item, .page-mobile-app-installation-item {
    flex: 1 1 100%;
  }
  .page-mobile-app-game-card h3 {
    font-size: 1.2em;
  }
  .page-mobile-app-register-promo h2 {
    font-size: 2.2em;
  }
  .page-mobile-app-register-promo p,
  .page-mobile-app-conclusion p {
    font-size: 1em;
  }
  .page-mobile-app-faq .faq-question {
    padding: 12px 15px;
  }
  .page-mobile-app-faq .faq-question h3 {
    font-size: 1.1em;
  }
  .page-mobile-app-faq .faq-toggle {
    font-size: 20px;
  }
  .page-mobile-app-faq .faq-answer {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-mobile-app-hero h1 {
    font-size: 2em;
  }
  .page-mobile-app h2 {
    font-size: 1.5em;
  }
  .page-mobile-app-hero p {
    font-size: 1em;
  }
  .page-mobile-app-btn-large {
    padding: 15px 30px;
    font-size: 1em;
  }
  .page-mobile-app-feature-item,
  .page-mobile-app-game-card,
  .page-mobile-app-platform-item,
  .page-mobile-app-installation-item {
    padding: 20px;
  }
  .page-mobile-app-feature-icon {
    width: 100px;
    height: 100px;
  }
}