.page-resources-mobile-betting-advantages {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-mobile-betting-advantages__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-mobile-betting-advantages__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-resources-mobile-betting-advantages__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-resources-mobile-betting-advantages__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
}

.page-resources-mobile-betting-advantages__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-mobile-betting-advantages__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

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

.page-resources-mobile-betting-advantages__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-mobile-betting-advantages__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-mobile-betting-advantages__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-resources-mobile-betting-advantages__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-mobile-betting-advantages__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin-top: 40px;
  z-index: 1;
}

.page-resources-mobile-betting-advantages__hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-mobile-betting-advantages__introduction-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.page-resources-mobile-betting-advantages__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #000000;
  font-weight: bold;
}

.page-resources-mobile-betting-advantages__section-description {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-resources-mobile-betting-advantages__advantages-grid {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-resources-mobile-betting-advantages__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.page-resources-mobile-betting-advantages__advantage-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-mobile-betting-advantages__advantage-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-resources-mobile-betting-advantages__card-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  min-height: 200px; /* Enforce minimum height */
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-resources-mobile-betting-advantages__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-mobile-betting-advantages__card-text {
  font-size: 1.05em;
  color: #666666;
  text-align: left;
}

.page-resources-mobile-betting-advantages__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-resources-mobile-betting-advantages__cta-section .page-resources-mobile-betting-advantages__section-title {
  color: #FCBC45;
}

.page-resources-mobile-betting-advantages__cta-section .page-resources-mobile-betting-advantages__section-description {
  color: #f0f0f0;
  margin-bottom: 50px;
}

.page-resources-mobile-betting-advantages__button--download {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-resources-mobile-betting-advantages__button--download:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-resources-mobile-betting-advantages__conclusion-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f8f8f8;
}

.page-resources-mobile-betting-advantages__conclusion-text {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #555555;
}

.page-resources-mobile-betting-advantages__back-link {
  display: inline-block;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid #000000;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-resources-mobile-betting-advantages__back-link:hover {
  background-color: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-mobile-betting-advantages__hero-title {
    font-size: 3em;
  }
  .page-resources-mobile-betting-advantages__section-title {
    font-size: 2.2em;
  }
  .page-resources-mobile-betting-advantages__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-mobile-betting-advantages__hero-section {
    padding: 40px 15px;
  }
  .page-resources-mobile-betting-advantages__hero-title {
    font-size: 2.5em;
  }
  .page-resources-mobile-betting-advantages__hero-description {
    font-size: 1em;
  }
  .page-resources-mobile-betting-advantages__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-mobile-betting-advantages__button {
    width: 100%;
    max-width: 300px;
  }
  .page-resources-mobile-betting-advantages__introduction-section,
  .page-resources-mobile-betting-advantages__advantages-grid,
  .page-resources-mobile-betting-advantages__cta-section,
  .page-resources-mobile-betting-advantages__conclusion-section {
    padding: 50px 15px;
  }
  .page-resources-mobile-betting-advantages__section-title {
    font-size: 1.8em;
  }
  .page-resources-mobile-betting-advantages__section-description {
    font-size: 0.95em;
  }
  .page-resources-mobile-betting-advantages__grid-container {
    grid-template-columns: 1fr;
  }
  .page-resources-mobile-betting-advantages__card-title {
    font-size: 1.5em;
  }
  .page-resources-mobile-betting-advantages__card-text {
    font-size: 0.9em;
  }
  /* Ensure content area images do not overflow */
  .page-resources-mobile-betting-advantages img {
    max-width: 100%;
    height: auto;
  }
  .page-resources-mobile-betting-advantages__card-image {
    min-height: 200px; /* Maintain minimum height for mobile */
  }
}

@media (max-width: 480px) {
  .page-resources-mobile-betting-advantages__hero-title {
    font-size: 2em;
  }
  .page-resources-mobile-betting-advantages__section-title {
    font-size: 1.5em;
  }
  .page-resources-mobile-betting-advantages__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-mobile-betting-advantages__button--download {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}