/* style/sports.css */

/* --- General Styles --- */
.page-sports {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000000; /* Inherited from body, ensuring contrast */
}

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

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

.page-sports__section-title--dark {
  color: #0A2463; /* Dark blue for titles on lighter backgrounds */
}

.page-sports__section-description {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-sports__section-description--dark {
  color: #333333;
}

.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-outline {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box; /* Ensure padding doesn't push width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-sports__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #0A2463; /* Dark blue */
  border: 2px solid #FFD700;
}

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

.page-sports__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-sports__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-sports__btn-outline {
  background-color: transparent;
  color: #0A2463; /* Dark blue */
  border: 2px solid #0A2463;
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-sports__btn-outline:hover {
  background-color: #0A2463;
  color: #ffffff;
}

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

.page-sports__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-sports__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-sports__list li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-sports__list-highlight {
  color: #FFD700;
}

/* --- Hero Section --- */
.page-sports__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

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

.page-sports__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability, no color change */
}

.page-sports__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #ffffff;
}

.page-sports__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
}

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

/* --- Why Choose Section --- */
.page-sports__why-choose-section {
  padding: 80px 0;
  background-color: #f8f9fa; /* Light background */
  color: #333333; /* Dark text */
}

.page-sports__why-choose-section .page-sports__section-title {
  color: #0A2463; /* Dark blue title */
}

.page-sports__why-choose-section .page-sports__section-description {
  color: #555555; /* Darker description */
}

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

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

.page-sports__feature-item:hover {
  transform: translateY(-5px);
}

.page-sports__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-sports__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-sports__feature-text {
  font-size: 1em;
  color: #666666;
}

/* --- Featured Sports Section --- */
.page-sports__featured-sports-section {
  padding: 80px 0;
  background-color: #0A2463; /* Dark blue background */
  color: #ffffff;
}

.page-sports__featured-sports-section .page-sports__section-title {
  color: #FFD700; /* Gold title */
}

.page-sports__featured-sports-section .page-sports__section-description {
  color: #e0e0e0;
}

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

.page-sports__sport-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-sports__sport-card:hover {
  transform: translateY(-5px);
}

.page-sports__sport-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-sports__sport-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 15px 20px 5px;
}

.page-sports__sport-text {
  font-size: 1em;
  color: #e0e0e0;
  padding: 0 20px 20px;
}

/* --- How To Section --- */
.page-sports__how-to-section {
  padding: 80px 0;
  background-color: #f8f9fa; /* Light background */
  color: #333333; /* Dark text */
}

.page-sports__how-to-section .page-sports__section-title {
  color: #0A2463;
}

.page-sports__how-to-section .page-sports__section-description {
  color: #555555;
}

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

.page-sports__step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-sports__step-number {
  font-size: 2.5em;
  color: #FFD700;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-sports__step-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-sports__step-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

/* --- Promo Section --- */
.page-sports__promo-section {
  padding: 80px 0;
  background-color: #FFD700; /* Gold background */
  color: #0A2463; /* Dark blue text */
}

.page-sports__promo-section .page-sports__section-title {
  color: #0A2463;
}

.page-sports__promo-section .page-sports__section-description {
  color: #333333;
}

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

.page-sports__promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-sports__promo-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-sports__promo-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

/* --- Live Betting Section --- */
.page-sports__live-betting-section {
  padding: 80px 0;
  background-color: #0A2463;
  color: #ffffff;
}

.page-sports__live-betting-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-sports__live-betting-content .page-sports__text-content {
  flex: 1;
}

.page-sports__live-betting-content .page-sports__section-title {
  text-align: left;
  color: #FFD700;
}

.page-sports__live-betting-content .page-sports__section-description {
  text-align: left;
  color: #e0e0e0;
  margin-left: 0;
  margin-right: 0;
}

.page-sports__video-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background-color: #000; /* Fallback for video */
}

.page-sports__video-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.page-sports__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.page-sports__video-caption {
  text-align: center;
  margin-top: 15px;
  font-size: 0.9em;
  color: #e0e0e0;
}

/* --- Tips Section --- */
.page-sports__tips-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  color: #333333;
}

.page-sports__tips-section .page-sports__section-title {
  color: #0A2463;
}

.page-sports__tips-section .page-sports__section-description {
  color: #555555;
}

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

.page-sports__tip-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}