.page-betting-platform-reviews-mobile-app {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A192F; /* Main dark background */
  line-height: 1.6;
}

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

.page-betting-platform-reviews-mobile-app__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1A375D 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-betting-platform-reviews-mobile-app__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Accent color for titles */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-betting-platform-reviews-mobile-app__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-betting-platform-reviews-mobile-app__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-betting-platform-reviews-mobile-app__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
}

.page-betting-platform-reviews-mobile-app__btn--primary {
  background-color: #FFD700; /* Accent color */
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-betting-platform-reviews-mobile-app__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-betting-platform-reviews-mobile-app__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-betting-platform-reviews-mobile-app__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-betting-platform-reviews-mobile-app__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-betting-platform-reviews-mobile-app__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
}

.page-betting-platform-reviews-mobile-app__intro-section,
.page-betting-platform-reviews-mobile-app__review-criteria,
.page-betting-platform-reviews-mobile-app__featured-apps,
.page-betting-platform-reviews-mobile-app__benefits,
.page-betting-platform-reviews-mobile-app__how-to-choose,
.page-betting-platform-reviews-mobile-app__safety,
.page-betting-platform-reviews-mobile-app__cta-section,
.page-betting-platform-reviews-mobile-app__related-content {
  padding: 80px 0;
}

.page-betting-platform-reviews-mobile-app__intro-section p,
.page-betting-platform-reviews-mobile-app__safety p,
.page-betting-platform-reviews-mobile-app__cta-section p {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-betting-platform-reviews-mobile-app__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 40px 0;
}

.page-betting-platform-reviews-mobile-app__image--center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-betting-platform-reviews-mobile-app__image--right {
  float: right;
  margin-left: 30px;
  width: 50%; /* Adjust as needed for layout */
}

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

.page-betting-platform-reviews-mobile-app__criterion-card {
  background-color: #1A2F4A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-betting-platform-reviews-mobile-app__criterion-card:hover {
  transform: translateY(-5px);
}

.page-betting-platform-reviews-mobile-app__criterion-card h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-betting-platform-reviews-mobile-app__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-betting-platform-reviews-mobile-app__icon--large {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.page-betting-platform-reviews-mobile-app__app-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.page-betting-platform-reviews-mobile-app__app-card {
  background-color: #1A2F4A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-betting-platform-reviews-mobile-app__app-card:hover {
  transform: translateY(-5px);
}

.page-betting-platform-reviews-mobile-app__app-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-betting-platform-reviews-mobile-app__app-card-content {
  padding: 25px;
}

.page-betting-platform-reviews-mobile-app__app-card-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-betting-platform-reviews-mobile-app__app-card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-betting-platform-reviews-mobile-app__app-card-title a:hover {
  color: #e6c200;
}

.page-betting-platform-reviews-mobile-app__app-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-betting-platform-reviews-mobile-app__app-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #C0C0C0;
}

.page-betting-platform-reviews-mobile-app__app-features li::before {
  content: '✓';
  color: #FFD700;
  margin-right: 10px;
  font-weight: bold;
  font-size: 1.2em;
}

.page-betting-platform-reviews-mobile-app__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-betting-platform-reviews-mobile-app__benefit-item {
  background-color: #1A2F4A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-betting-platform-reviews-mobile-app__benefit-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-betting-platform-reviews-mobile-app__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.page-betting-platform-reviews-mobile-app__steps-list li {
  background-color: #1A2F4A;
  margin-bottom: 20px;
  padding: 20px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 60px;
}

.page-betting-platform-reviews-mobile-app__steps-list li strong {
  color: #FFD700;
}

.page-betting-platform-reviews-mobile-app__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A192F;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-betting-platform-reviews-mobile-app__how-to-choose {
  counter-reset: step-counter;
}

.page-betting-platform-reviews-mobile-app__cta-section {
  background: linear-gradient(90deg, #0A192F 0%, #000000 100%);
  padding: 80px 0;
  text-align: center;
}

.page-betting-platform-reviews-mobile-app__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

.page-betting-platform-reviews-mobile-app__article-card {
  background-color: #1A2F4A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-betting-platform-reviews-mobile-app__article-card:hover {
  transform: translateY(-5px);
}

.page-betting-platform-reviews-mobile-app__article-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-betting-platform-reviews-mobile-app__article-title {
  font-size: 1.4em;
  padding: 15px;
  margin-bottom: 0;
}

.page-betting-platform-reviews-mobile-app__article-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-betting-platform-reviews-mobile-app__article-title a:hover {
  color: #e6c200;
}

.page-betting-platform-reviews-mobile-app__article-card p {
  padding: 0 15px 15px;
  color: #C0C0C0;
}

.page-betting-platform-reviews-mobile-app__read-more {
  display: block;
  padding: 15px;
  background-color: #FFD700;
  color: #0A192F;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-betting-platform-reviews-mobile-app__read-more:hover {
  background-color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-betting-platform-reviews-mobile-app__hero-title {
    font-size: 2.5em;
  }
  .page-betting-platform-reviews-mobile-app__section-title {
    font-size: 2em;
  }
  .page-betting-platform-reviews-mobile-app__image--right {
    float: none;
    margin: 30px auto;
    width: 80%;
  }
  .page-betting-platform-reviews-mobile-app__hero-actions,
  .page-betting-platform-reviews-mobile-app__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-betting-platform-reviews-mobile-app__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-betting-platform-reviews-mobile-app__hero-title {
    font-size: 2em;
  }
  .page-betting-platform-reviews-mobile-app__hero-description {
    font-size: 1em;
  }
  .page-betting-platform-reviews-mobile-app__section-title {
    font-size: 1.8em;
  }
  .page-betting-platform-reviews-mobile-app__criteria-grid,
  .page-betting-platform-reviews-mobile-app__app-cards-grid,
  .page-betting-platform-reviews-mobile-app__benefits-grid,
  .page-betting-platform-reviews-mobile-app__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-platform-reviews-mobile-app__btn {
    width: 90%;
  }
  .page-betting-platform-reviews-mobile-app__steps-list li {
    padding-left: 50px;
  }
}