/* style/sports.css */
.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #FFFFFF; /* Explicitly set for clarity, though body is often white */
}

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

.page-sports__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-sports__text-center {
  text-align: center;
}

.page-sports__mt-4 {
  margin-top: 40px;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #26A9E0; /* Dark background for hero */
  color: #ffffff;
  overflow: hidden;
}

.page-sports__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  padding: 20px;
}

.page-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF;
}

.page-sports__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.page-sports__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

.page-sports__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-sports__btn-large {
  font-size: 1.2em;
  padding: 18px 35px;
}

/* Sections */
.page-sports__introduction-section,
.page-sports__features-section,
.page-sports__live-betting-section,
.page-sports__why-choose-section,
.page-sports__cta-section {
  padding: 80px 0;
}

.page-sports__featured-sports-section,
.page-sports__promotions-section,
.page-sports__security-section,
.page-sports__faq-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-sports__featured-sports-section .page-sports__section-title,
.page-sports__promotions-section .page-sports__section-title,
.page-sports__security-section .page-sports__section-title,
.page-sports__faq-section .page-sports__section-title {
  color: #FFFFFF;
}

.page-sports__featured-sports-section .page-sports__section-description,
.page-sports__promotions-section .page-sports__section-description,
.page-sports__security-section .page-sports__section-description,
.page-sports__faq-section .page-sports__section-description {
  color: #f0f0f0;
}

/* Sports Grid */
.page-sports__sports-grid,
.page-sports__features-grid,
.page-sports__promo-grid,
.page-sports__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-sports__sport-card,
.page-sports__feature-item,
.page-sports__promo-card,
.page-sports__security-item {
  background-color: #ffffff;
  color: #333333;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__sport-card:hover,
.page-sports__feature-item:hover,
.page-sports__promo-card:hover,
.page-sports__security-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-sports__sport-image,
.page-sports__feature-icon,
.page-sports__promo-image,
.page-sports__security-icon {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover; /* Ensure images fill their space nicely */
}

.page-sports__feature-icon,
.page-sports__security-icon {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

.page-sports__card-title,
.page-sports__feature-title,
.page-sports__item-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-sports__sport-card p,
.page-sports__feature-item p,
.page-sports__promo-card p,
.page-sports__security-item p {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-sports__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-sports__card-button:hover {
  background-color: #1e87bb;
}

/* Live Betting Video */
.page-sports__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__video-wrapper .page-sports__video,
.page-sports__video-wrapper .page-sports__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-sports__video-wrapper .page-sports__video-link {
  display: block;
  cursor: pointer;
}

.page-sports__video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Why Choose List */
.page-sports__why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-sports__why-list li {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  line-height: 1.5;
  border-left: 5px solid #26A9E0;
}

.page-sports__why-list li strong {
  color: #26A9E0;
}

/* FAQ Section */
.page-sports__faq-list {
  max-width: 800px;
  margin: 0 auto;
}