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

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

.page-sports__hero-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 40px;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-sports__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Subtle overlay for text readability */
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-sports__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F0F0F0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-sports__btn {
  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, transform 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.page-sports__btn--register {
  background-color: #FFFFFF; /* Register color */
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-sports__btn--register:hover {
  background-color: #F0F0F0;
  transform: translateY(-2px);
}

.page-sports__btn--login {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-sports__btn--login:hover {
  background-color: #E0A030;
  transform: translateY(-2px);
}

.page-sports__btn--download {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-sports__btn--download:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
}

.page-sports__intro-section,
.page-sports__features-section,
.page-sports__popular-sports-section,
.page-sports__getting-started-section,
.page-sports__promotions-section,
.page-sports__advanced-strategies-section,
.page-sports__tech-section,
.page-sports__responsible-gaming-section,
.page-sports__guides-section,
.page-sports__faq-section {
  padding: 60px 0;
}

.page-sports__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
}

.page-sports__text-content {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #333333;
}

.page-sports__features-grid,
.page-sports__sports-grid,
.page-sports__steps-grid,
.page-sports__promo-grid,
.page-sports__strategy-grid,
.page-sports__tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-sports__feature-card,
.page-sports__sport-card,
.page-sports__step-card,
.page-sports__promo-card,
.page-sports__strategy-card,
.page-sports__tech-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-sports__feature-card:hover,
.page-sports__sport-card:hover,
.page-sports__step-card:hover,
.page-sports__promo-card:hover,
.page-sports__strategy-card:hover,
.page-sports__tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.page-sports__feature-icon,
.page-sports__sport-image,
.page-sports__promo-image {
  width: 100%; /* Ensure images fill card width */
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

.page-sports__feature-title,
.page-sports__sport-title,
.page-sports__step-title,
.page-sports__promo-title,
.page-sports__strategy-title,
.page-sports__tech-title,
.page-sports__guide-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000000;
}

.page-sports__feature-description,
.page-sports__sport-description,
.page-sports__step-description,
.page-sports__promo-description,
.page-sports__strategy-description,
.page-sports__tech-description,
.page-sports__guide-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1; /* Allow description to take available space */
}

.page-sports__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-sports__btn--small:hover {
  background-color: #333333;
}

.page-sports__btn--outline {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-sports__btn--outline:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.page-sports__btn--primary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-sports__btn--primary:hover {
  background-color: #333333;
}

.page-sports__btn--promo {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
}

.page-sports__btn--promo:hover {
  background-color: #E0A030;
}

.page-sports__action-area {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-sports__guide-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
}