.page-sports {
  background-color: #F4F7FB;
  color: #1F2D3D;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-sports__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  text-align: center;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-sports__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-sports__hero-content {
  max-width: 900px;
}

.page-sports__hero-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

.page-sports__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 30px;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
  border: none;
  cursor: pointer;
}

.page-sports__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-sports__cta-button--small {
  padding: 12px 25px;
  font-size: 0.95rem;
}

.page-sports__cta-button--large {
  padding: 18px 35px;
  font-size: 1.1rem;
}

.page-sports__section-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 30px;
  margin-top: 50px;
}

.page-sports__about-section {
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-sports__about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.page-sports__about-text {
  flex: 1;
  min-width: 300px;
  line-height: 1.7;
  color: #1F2D3D;
}

.page-sports__about-text p {
  margin-bottom: 15px;
}

.page-sports__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-sports__feature-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-weight: 500;
}

.page-sports__feature-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

.page-sports__about-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-sports__about-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__games-section {
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.page-sports__game-card {
  background-color: #F4F7FB;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-sports__game-card:hover {
  transform: translateY(-5px);
}

.page-sports__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__game-card-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-sports__game-card-description {
  font-size: 0.95rem;
  color: #1F2D3D;
  padding: 0 15px;
}

.page-sports__view-all-wrapper {
  text-align: center;
  margin-top: 30px;
}

.page-sports__promotions-section {
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 40px 20px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-sports__promotions-section .page-sports__section-title {
  color: #FFFFFF;
}

.page-sports__promotions-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__promotions-section .page-sports__cta-button {
  background: linear-gradient(180deg, #6FA3FF 0%, #4A8BFF 100%);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.page-sports__promotions-section .page-sports__cta-button:hover {
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.page-sports__faq-section {
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #D6E2FF;
  padding-bottom: 20px;
}

.page-sports__faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-sports__faq-question {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-sports__faq-answer {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-sports__final-cta-section {
  max-width: 1390px;
  margin: 0 auto 60px auto;
  padding: 50px 20px;
  background-color: #F4F7FB;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-sports__final-cta-section .page-sports__section-title {
  margin-top: 0;
  margin-bottom: 20px;
}

.page-sports__final-cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-sports__hero-title {
    font-size: 2.5rem;
  }

  .page-sports__section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .page-sports__hero-section {
    flex-direction: column;
    padding: 15px;
    margin-bottom: 30px;
  }

  .page-sports__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-sports__hero-title {
    font-size: 2rem;
  }

  .page-sports__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-sports__section-title {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-sports__about-content {
    flex-direction: column;
    gap: 20px;
  }

  .page-sports__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-sports__game-card-image {
    height: 250px;
  }

  .page-sports__promotions-section {
    padding: 30px 15px;
  }

  .page-sports__promotions-description {
    font-size: 1rem;
  }

  .page-sports__faq-question {
    font-size: 1.1rem;
  }

  .page-sports__faq-answer {
    font-size: 0.95rem;
  }

  .page-sports__final-cta-section {
    padding: 30px 15px;
    margin-bottom: 40px;
  }

  .page-sports__final-cta-description {
    font-size: 1.05rem;
  }

  /* Critical for mobile image overflow */
  .page-sports img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content section images are not smaller than 200px */
  .page-sports__about-image,
  .page-sports__game-card-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-sports__hero-title {
    font-size: 1.8rem;
  }

  .page-sports__section-title {
    font-size: 1.6rem;
  }

  .page-sports__cta-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .page-sports__cta-button--large {
    padding: 15px 25px;
    font-size: 1rem;
  }
}