/* style/sports.css */

/* Base styles for the sports page content */
.page-sports {
    color: #333333; /* Dark text on default light body background for readability */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background-color: #f8f8f8; /* Slightly off-white background for main content */
}

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

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    padding: 80px 20px; /* Padding for content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-color: #1A1A1A; /* Dark background for the hero section */
}

.page-sports__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.page-sports__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay for text readability */
    display: block;
    filter: none !important; /* Ensure no CSS filters are applied */
}

.page-sports__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

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

.page-sports__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-sports__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.page-sports__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A1A1A; /* Dark text */
    border: 2px solid #FFD700;
}

.page-sports__btn--primary:hover {
    background-color: #e6c200;
    color: #000000;
    transform: translateY(-2px);
}

.page-sports__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-sports__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
    transform: translateY(-2px);
}

.page-sports__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    min-width: unset;
}

/* General Section Styling */
.page-sports__about-sports-betting,
.page-sports__sports-categories,
.page-sports__why-bet999,
.page-sports__how-to-start,
.page-sports__detail-pages,
.page-sports__cta-section,
.page-sports__faq,
.page-sports__responsible-gaming {
    padding: 60px 0;
    background-color: #ffffff; /* White background for sections */
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-sports__about-sports-betting:nth-of-type(even),
.page-sports__why-bet999:nth-of-type(even),
.page-sports__how-to-start:nth-of-type(even),
.page-sports__faq:nth-of-type(even),
.page-sports__responsible-gaming:nth-of-type(even) {
    background-color: #f0f0f0; /* Light gray for alternating sections */
}

.page-sports__section-title {
    font-size: 2.5em;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-sports__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

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