:root {
  --b99-bg-color: #08160F;
  --b99-card-bg: #11271B;
  --b99-text-main: #F2FFF6;
  --b99-text-secondary: #A7D9B8;
  --b99-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --b99-border-color: #2E7A4E;
  --b99-glow-color: #57E38D;
  --b99-gold-color: #F2C14E;
  --b99-divider-color: #1E3A2A;
  --b99-deep-green: #0A4B2C;
}

.page-sports {
  background-color: var(--b99-bg-color);
  color: var(--b99-text-main); /* Main text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-sports__section {
  padding: 80px 20px;
  text-align: center;
}

.page-sports__section.page-sports__dark-section {
  background-color: var(--b99-card-bg); /* Slightly different dark background */
}

.page-sports__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  min-height: 600px; /* Ensure visibility */
}

.page-sports__hero-image-wrapper {
  position: relative;
  width: 100%;
  max-height: 700px; /* Limit image height */
  overflow: hidden;
  margin-bottom: 40px; /* Space between image and content */
}

.page-sports__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px; /* Ensure image is not too small */
}

.page-sports__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background: rgba(17, 39, 27, 0.8); /* Semi-transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  color: var(--b99-gold-color);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-sports__description {
  font-size: 1.1rem;
  color: var(--b99-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: center;
  gap: 20px;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  min-width: 180px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-sports__btn-primary {
  background: var(--b99-btn-gradient);
  color: var(--b99-text-main);
  border: none;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-sports__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
  opacity: 0.9;
}

.page-sports__btn-secondary {
  background: transparent;
  color: var(--b99-glow-color);
  border: 2px solid var(--b99-glow-color);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.2);
}