.page-sports {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-sports__video-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.page-sports__video-background {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.page-sports__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 0;
}

.page-sports__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-sports__hero-title {
    font-size: 3.5em;
    color: #ffc107; /* Auxiliary color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* General Section Styles */
.page-sports__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-sports__section-title {
    font-size: 2.5em;
    color: #007bff; /* Main color for titles */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

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

.page-sports__sub-title {
    font-size: 1.8em;
    color: #ffc107;
    margin-bottom: 15px;
}

.page-sports__text {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 15px;
}

.page-sports__text-center {
    text-align: center;
}

/* Backgrounds */
.page-sports__dark-bg {
    background-color: #1a1a1a; /* Slightly lighter than body for contrast */
    padding: 60px 0;
}

.page-sports__intro-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-sports__highlight-item {
    background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards on dark bg */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-sports__highlight-title {
    font-size: 1.5em;
    color: #ffc107;
    margin-bottom: 15px;
}

.page-sports__highlight-text {
    color: #e0e0e0;
}

/* Categories Section */
.page-sports__categories-section {
    padding: 60px 0;
    background-color: #0d0d0d; /* Slightly darker for visual separation */
}

.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: rgba(0, 123, 255, 0.1); /* Semi-transparent main color for cards */
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.page-sports__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-sports__category-title {
    font-size: 1.3em;
    color: #ffc107;
    padding: 15px;
    margin: 0;
}

.page-sports__category-title a {
    color: inherit;
    text-decoration: none;
}

.page-sports__category-title a:hover {
    text-decoration: underline;
}

.page-sports__category-text {
    color: #e0e0e0;
    padding: 0 15px 15px;
    font-size: 0.95em;
}

/* Live Betting Section */
.page-sports__live-betting-section {
    padding: 60px 0;
}

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

.page-sports__live-betting-image {
    flex: 1 1 45%;
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    height: auto; /* Ensure image scales */
    min-width: 300px; /* Minimum size for content images */
}

.page-sports__live-betting-text {
    flex: 1 1 45%;
    max-width: 45%;
    min-width: 300px; /* Minimum size for content text block */
}

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

.page-sports__list-item {
    color: #f0f0f0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

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

/* Promotions Section */
.page-sports__promotions-section {
    padding: 60px 0;
    background-color: #0d0d0d;
}

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

.page-sports__promo-card {
    background: rgba(255, 193, 7, 0.1); /* Semi-transparent auxiliary color for cards */
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.page-sports__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.page-sports__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-sports__promo-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-sports__promo-title a {
    color: inherit;
    text-decoration: none;
}

.page-sports__promo-title a:hover {
    text-decoration: underline;
}

.page-sports__promo-text {
    color: #e0e0e0;
    font-size: 0.95em;
    padding: 0 15px;
    margin-bottom: 20px;
}

/* How-To-Bet Section */
.page-sports__how-to-bet-section {
    padding: 60px 0;
}

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