:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07; /* Color for 'Login' from custom scheme */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #ffffff;
  --background-color-dark: #1a1a1a; /* A slightly darker background for contrast sections */
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark); /* Default text color for light backgrounds */
  background: var(--background-color-light); /* Default body background */
}

/* Utility classes for text alignment */
.page-sports__center-text {
  text-align: center;
}

/* Section styling */
.page-sports__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-sports__dark-bg {
  background: var(--background-color-dark);
  color: var(--text-color-light);
}

.page-sports__light-bg {
  background: var(--background-color-light);
  color: var(--text-color-dark);
}

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

.page-sports__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: inherit; /* Inherit color from parent section (dark/light bg) */
}

.page-sports__paragraph {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
  color: inherit;
}

.page-sports .keyword {
  font-weight: bold;
  color: var(--primary-color);
}
.page-sports__dark-bg .keyword {
  color: var(--primary-color); /* Ensure visibility on dark background */
}


/* HERO Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--primary-color) 0%, #007bff 100%); /* Adjusted gradient for primary color */
  color: var(--text-color-light);
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-sports__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 1;
}

.page-sports__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}