/* style/sports.css */

/* Custom properties based on brand colors */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07; /* Login/Register button color */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #ffffff;
  --background-color-dark: #26A9E0;
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-sports {
  font-family: 'Arial', sans-serif;
  color: var(--text-color-dark);
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: var(--background-color-light); /* Default light background for body */
}

.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--overview,
.page-sports__section--live-betting,
.page-sports__section--responsible-gaming,
.page-sports__section--news {
  background-color: var(--background-color-light);
  color: var(--text-color-dark);
}

.page-sports__dark-section {
  background-color: var(--background-color-dark);
  color: var(--text-color-light);
}

.page-sports__light-bg {
  background-color: var(--background-color-light);
  color: var(--text-color-dark);
}

.page-sports__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: inherit; /* Inherit color from section for contrast */
  line-height: 1.2;
}

.page-sports__paragraph {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

/* HERO Section */
.page-sports__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px 0; /* Adjusted padding-top as main already has it, or remove if main doesn't */
  background: linear-gradient(135deg, var(--primary-color), var(--background-color-light));
  color: var(--text-color-light);
}

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

.page-sports__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-sports__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}