/* style/sports.css */

:root {
  --primary-color: #C0392B;
  --secondary-color: #F39C12;
  --text-color-dark-bg: #ffffff;
  --text-color-light-bg: #333333;
  --background-dark: #0a0a0a; /* Body background from shared.css */
}

/* Base styles for the page content, ensuring contrast with body background */
.page-sports {
  color: var(--text-color-dark-bg); /* Body is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* General padding for footer */
}

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

/* Section padding to clear fixed header */
.page-sports__title-section,
.page-sports__introduction-section,
.page-sports__betting-types-section,
.page-sports__registration-guide-section,
.page-sports__promotions-section,
.page-sports__security-section,
.page-sports__mobile-app-section,
.page-sports__faq-section,
.page-sports__brand-section,
.page-sports__blog-section {
  padding-top: 60px; /* Default padding for sections */
  padding-bottom: 60px;
}

/* First content section after video needs more padding */
.page-sports__title-section {
  padding-top: 120px; /* Adjusted for fixed header */
}

/* Video Section Styles */
.page-sports__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjusted for fixed header */
  background: var(--background-dark);
}

.page-sports__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-sports__video-link {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__video-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-sports__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-sports__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* Prevent video controls from blocking click event on parent <a> */
}