/* style/sports.css */
.page-sports {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  background-color: #0A0A0A; /* Ensure consistent dark background */
}

.page-sports__video-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure it spans full width */
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

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

.page-sports__hero-content {
  padding: 40px 20px;
  max-width: 800px;
  margin-top: -80px; /* Overlap slightly for visual flow */
  position: relative;
  z-index: 1;
  background-color: #111111; /* Card B G */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #3A2A12; /* Border */
}

.page-sports__hero-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-sports__hero-description {
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

.page-sports__section-title {
  font-size: clamp(1.8em, 3.5vw, 3em); /* Responsive font size */
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-sports__subsection-title {
  font-size: clamp(1.4em, 2.5vw, 2em); /* Responsive font size */
  color: #F2C14E; /* Main Color */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-sports__text-block {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}

.page-sports__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #ffffff; /* White text for contrast */
  border: none;
}

.page-sports__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-sports__btn-secondary {
  background: #111111; /* Card B G */
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E;
}

.page-sports__btn-secondary:hover {
  background: #F2C14E;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-sports__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #ffffff;
  border: none;
}

.page-sports__btn-small:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.page-sports__dark-bg {
  background-color: #111111; /* Card B G */
  padding: 60px 0;
}

.page-sports__about-section,
.page-sports__getting-started-section,
.page-sports__markets-section,
.page-sports__live-betting-section,
.page-sports__promotions-section,
.page-sports__why-choose-section,
.page-sports__mobile-app-section,
.page-sports__partners-section,
.page-sports__faq-section,
.page-sports__join-us-section {
  padding: 60px 0;
}

.page-sports__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__image-centered {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
  min-width: 200px;
  min-height: 200px;
}

.page-sports__list-ordered,
.page-sports__list-bullet {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFF6D6; /* Text Main */
}

.page-sports__list-ordered li,
.page-sports__list-bullet li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-sports__list-bullet li strong {
  color: #F2C14E;
}

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

.page-sports__promo-card {
  background-color: #111111; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}