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

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

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

.page-sports__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-sports__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
}

.page-sports__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #0A2342;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-sports__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-sports__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #0A2342;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports__btn-primary:hover {
  background: #1a3a5e;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: #FFD700;
  color: #0A2342;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-sports__btn-secondary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-sports__btn-text {
  color: #0A2342;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-sports__btn-text:hover {
  color: #FFD700;
}

.page-sports__cta-container {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

/* 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 */
  overflow: hidden;
}

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

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

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-sports__hero-title {
  font-size: 3.8em;
  color: #0A2342;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-sports__hero-description {
  font-size: 1.4em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.5;
}

/* General Section Styles */
.page-sports__intro-section, 
.page-sports__sports-categories-section, 
.page-sports__promotions-section, 
.page-sports__faq-section {
  padding: 80px 0;
}

.page-sports__betting-types-section, 
.page-sports__how-to-bet-section, 
.page-sports__features-section, 
.page-sports__conclusion-section {
  padding: 80px 0;
}

.page-sports__light-bg {
  background-color: #f9f9f9;
  color: #333333;
}

.page-sports__dark-bg {
  background-color: #0A2342;
  color: #ffffff;
}

.page-sports__dark-bg .page-sports__section-title,
.page-sports__dark-bg .page-sports__section-description,
.page-sports__dark-bg .page-sports__text-block {
  color: #ffffff;
}

.page-sports__dark-bg .page-sports__card-title,
.page-sports__dark-bg .page-sports__feature-title,
.page-sports__dark-bg .page-sports__step-title,
.page-sports__dark-bg .page-sports__feature-box-title {
  color: #FFD700;
}

.page-sports__dark-bg .page-sports__card-text,
.page-sports__dark-bg .page-sports__feature-text,
.page-sports__dark-bg .page-sports__step-text,
.page-sports__dark-bg .page-sports__feature-box-text {
  color: #e0e0e0;
}