/* style/sports.css */

.page-sports {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color from custom palette */
  background-color: #0A0A0A; /* Main background from custom palette */
}

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

.page-sports__section {
  padding: 60px 0;
  text-align: center;
}

.page-sports__section-title {
  font-size: 2.8em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Brand color for titles */
  line-height: 1.2;
}

.page-sports__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

/* Hero Section */
.page-sports__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Padding top 10px, relying on body for header offset */
  background-color: #0A0A0A; /* Ensure consistent background */
}

.page-sports__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
}

.page-sports__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer; /* Indicate video is clickable */
}

.page-sports__hero-content {
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
}

.page-sports__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Use clamp for H1 font size */
  font-weight: 900;
  color: #FFD36B; /* Auxiliary color for main title */
  margin-bottom: 15px;
  line-height: 1.1;
}

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

.page-sports__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
  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;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-sports__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: none;
}

.page-sports__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

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

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

/* Categories Section */
.page-sports__categories-section {
  background-color: #111111; /* Card BG from custom palette */
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-sports__category-card {
  background-color: #0A0A0A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #3A2A12; /* Border from custom palette */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(242, 193, 78, 0.2);
}

.page-sports__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #F2C14E); /* Small glow for icons */
}

.page-sports__category-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-sports__category-text {
  font-size: 0.95em;
  color: #FFF6D6;
}

/* Live Betting Section */
.page-sports__live-betting-section {
  background-color: #0A0A0A;
}

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

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

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