.page-sports {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
  background-color: var(--secondary-color); /* Matches body background */
}

/* Header offset for fixed header - applied to the first main content 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); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #26A9E0, #FFFFFF);
  overflow: hidden; /* Prevent content 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%;
}

.page-sports__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page-sports__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-sports__hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000; /* Darker for contrast on light gradient */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 18px;
  color: #333333;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #26A9E0; /* Primary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__cta-button:hover {
  background: #1e87c0; /* Slightly darker primary on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-sports__cta-button--guide {
  background: #EA7C07; /* Login color */
}

.page-sports__cta-button--guide:hover {
  background: #d46c06;
}

.page-sports__cta-button--secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-sports__cta-button--secondary:hover {
  background: #f0f0f0;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-sports__section {
  padding: 60px 20px;
  background-color: #ffffff; /* Consistent light background */
  text-align: center;
}

.page-sports__introduction {
  background-color: #f8f8f8;
}

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

.page-sports__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 40px;
}

.page-sports__text-block {
  font-size: 16px;
  color: #333333;
  margin-bottom: 20px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__text-block a {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
}

.page-sports__text-block a:hover {
  text-decoration: underline;
}

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

.page-sports__sport-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-sports__sport-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-sports__sport-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 20px 20px 10px;
}

.page-sports__sport-description {
  font-size: 15px;
  color: #555555;
  padding: 0 20px 20px;
}

.page-sports__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__list-item {
  background: #f0f8ff; /* Light blue background for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #26A9E0;
  border-radius: 4px;
  font-size: 16px;
  color: #333333;
}

.page-sports__list-item strong {
  color: #000000;
}

.page-sports__betting-guide .page-sports__section-title {
  margin-bottom: 50px;
}

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

.page-sports__guide-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.page-sports__guide-step-title {
  font-size: 20px;
  font-weight: 700;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-sports__guide-item p {
  font-size: 15px;
  color: #555555;
}

.page-sports__guide-item a {
  color: #EA7C07; /* Login color for links */
  text-decoration: none;
  font-weight: 600;
}

.page-sports__guide-item a:hover {
  text-decoration: underline;
}

.page-sports__guide-cta {
  margin-top: 40px;
  text-align: center;
}

.page-sports__guide-cta img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__promotions {
  background-color: #f0f8ff; /* Light blue background for promotions */
}

.page-sports__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  text-align: left;
}

.page-sports__promo-item {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-sports__promo-title {
  font-size: 20px;
  font-weight: 700;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-sports__promo-item p {
  font-size: 15px;
  color: #555555;
}

.page-sports__promotions img {
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__advantages {
  background-color: #ffffff;
}

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

.page-sports__advantage-item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}