.page-mobile-app {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: #121212; /* Inherited from shared, but for clarity */
}

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

.page-mobile-app__dark-bg {
  background-color: #017439;
  color: #ffffff;
}

.page-mobile-app__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-mobile-app__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  padding: 60px 0;
  padding-top: var(--header-offset, 120px);
  position: relative;
  overflow: hidden;
}

.page-mobile-app__hero-section .page-mobile-app__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-mobile-app__hero-content {
  max-width: 800px;
}

.page-mobile-app__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFF00; /* Use specific font color for title */
  line-height: 1.2;
}

.page-mobile-app__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-mobile-app__btn-primary,
.page-mobile-app__btn-secondary {
  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, color 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

.page-mobile-app__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
}

.page-mobile-app__btn-primary:hover {
  background-color: #a00606;
}

.page-mobile-app__btn-secondary {
  background-color: #ffffff;
  color: #017439;
  border-color: #017439;
}

.page-mobile-app__btn-secondary:hover {
  background-color: #f0f0f0;
  color: #017439;
}

.page-mobile-app__hero-image-wrapper {
  margin-top: 40px;
}

.page-mobile-app__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-mobile-app__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #FFFF00; /* Consistent title color */
}

.page-mobile-app__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

.page-mobile-app__features-section,
.page-mobile-app__download-section,
.page-mobile-app__games-section,
.page-mobile-app__security-section,
.page-mobile-app__promotions-section,
.page-mobile-app__faq-section,
.page-mobile-app__final-cta-section {
  padding: 80px 0;
}

.page-mobile-app__features-section {
  background-color: #121212; /* Body background */
  color: #ffffff;
}

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

.page-mobile-app__feature-card {
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-mobile-app__feature-card .page-mobile-app__feature-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-mobile-app__feature-card .page-mobile-app__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #017439;
}

.page-mobile-app__feature-card .page-mobile-app__card-text {
  font-size: 1em;
  color: #555555;
}

/* Download Section */
.page-mobile-app__download-section {
  text-align: center;
}

.page-mobile-app__download-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-mobile-app__step-card {
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-mobile-app__step-card .page-mobile-app__card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #017439;
}

.page-mobile-app__step-card .page-mobile-app__card-text {
  font-size: 0.95em;
  color: #555555;
}

.page-mobile-app__qr-codes {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

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

.page-mobile-app__qr-image {
  width: 250px;
  height: 250px;
  border: 5px solid #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-mobile-app__qr-label {
  margin-top: 15px;
  font-size: 1.1em;
  font-weight: bold;
  color: #ffffff;
}

.page-mobile-app__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 800px; /* Max width for video */
  background: #000;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
}

.page-mobile-app__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.page-mobile-app__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

/* Games Section */
.page-mobile-app__games-section {
  background-color: #121212;
  color: #ffffff;
}

.page-mobile-app__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-mobile-app__game-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-mobile-app__game-card .page-mobile-app__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-mobile-app__game-card .page-mobile-app__card-title {
  font-size: 1.4em;
  margin: 15px 0 10px;
}

.page-mobile-app__game-card .page-mobile-app__card-title a {
  color: #017439;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-mobile-app__game-card .page-mobile-app__card-title a:hover {
  color: #C30808;
}

.page-mobile-app__game-card .page-mobile-app__card-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px 20px;
}

.page-mobile-app__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Security Section */
.page-mobile-app__security-section {
  text-align: center;
}

.page-mobile-app__security-section .page-mobile-app__section-description {
  color: #f0f0f0;
}

.page-mobile-app__security-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.page-mobile-app__security-image {
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-mobile-app__security-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 600px;
}

.page-mobile-app__security-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-mobile-app__security-list li .page-mobile-app__list-item-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #FFFF00;
}

.page-mobile-app__security-list li p {
  font-size: 0.95em;
  color: #f0f0f0;
}