.page-sports {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background #121212 */
    background-color: #121212; /* Ensure consistency with body background */
}

.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.5em;
    color: #FFD700; /* Gold color for titles */
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-sports__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-sports__keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 100px 0; /* Adjust as needed, padding-top handled by var(--header-offset) */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-sports__hero-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: 1;
}

.page-sports__hero-section .page-sports__container {
    position: relative;
    z-index: 2;
}

.page-sports__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f5f5f5;
}

.page-sports__hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary,
.page-sports__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%; /* For mobile responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-sports__btn-primary {
    background-color: #FFD700;
    color: #121212; /* Dark text for gold background */
    border: 2px solid #FFD700;
}

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

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

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

.page-sports__btn-link {
    background-color: #8B0000;
    color: #ffffff;
    border: 2px solid #8B0000;
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.page-sports__btn-link:hover {
    background-color: #a30000;
    border-color: #a30000;
    transform: translateY(-2px);
}

/* General Sections */
.page-sports__about-sports {
    background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-sports__sports-variety {
    background-color: #8B0000; /* Auxiliary color for a section */
    color: #ffffff;
}

.page-sports__features {
    background-color: #1a1a1a;
}

.page-sports__promotions {
    background-color: #8B0000;
    color: #ffffff;
}

.page-sports__get-started {
    background-color: #1a1a1a;
}

.page-sports__faq-section {
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff;
}

.page-sports__final-cta {
    background-color: #1a1a1a;
    padding-bottom: 80px;
}

/* Image Wrapper */
.page-sports__image-wrapper {
    margin: 30px auto;
    max-width: 1000px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

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

.page-sports__feature-card {
    background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white for dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #e0e0e0;
}

.page-sports__feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.page-sports__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-sports__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    flex-grow: 0;
}

.page-sports__card-text {
    font-size: 1em;
    color: #e0e0e0;
    flex-grow: 1;
}

/* List Styles */
.page-sports__list {
    text-align: left;
    max-width: 800px;
    margin: 20px auto 40px auto;
    list-style: none; /* Remove default bullet */
    padding-left: 0;
}

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

.page-sports__list-item::before {
    content: "✅"; /* Custom bullet point */
    position: absolute;
    left: 0;
    color: #FFD700;
}

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

.page-sports__promo-card {
    background-color: rgba(0, 0, 0, 0.3); /* Darker background for contrast on red section */
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #e0e0e0;
}

.page-sports__promo-card:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Get Started Steps */
.page-sports__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-sports__steps-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #e0e0e0;
}

.page-sports__steps-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-sports__steps-description {
    font-size: 1em;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Video Section */
.page-sports__video-section {
    background-color: #1a1a1a;
    padding: 60px 0;
}

.page-sports__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-sports__video-link {
    display: block;
    width: 100%;
    height: 100%;
}

.page-sports__video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.page-sports__video-cta {
    margin-top: 30px;
}

/* FAQ Section */
.page-sports__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-sports__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #e0e0e0;
}

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #FFD700;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.page-sports__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.page-sports__faq-item.active .page-sports__faq-toggle {
    transform: rotate(45deg);
}

.page-sports__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #c0c0c0;
}

.page-sports__faq-item.active .page-sports__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px 25px 25px;
}

.page-sports__faq-answer p {
    margin: 0;
    color: #c0c0c0;
}

/* Final CTA */
.page-sports__final-cta .page-sports__cta-buttons {
    margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-sports__hero-title {
        font-size: 3em;
    }
    .page-sports__hero-description {
        font-size: 1.2em;
    }
    .page-sports__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-sports__hero-section {
        min-height: 60vh;
        padding: 80px 0;
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
    }
    .page-sports__hero-title {
        font-size: 2.5em;
    }
    .page-sports__hero-description {
        font-size: 1.1em;
    }
    .page-sports__section {
        padding: 40px 0;
    }
    .page-sports__section-title {
        font-size: 1.8em;
    }
    .page-sports__text-block,
    .page-sports__list-item,
    .page-sports__card-text,
    .page-sports__steps-description,
    .page-sports__faq-question span,
    .page-sports__faq-answer p {
        font-size: 1em;
    }
    .page-sports__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-sports__btn-primary,
    .page-sports__btn-secondary,
    .page-sports__btn-link {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-sports__feature-grid,
    .page-sports__promo-grid,
    .page-sports__steps-list {
        grid-template-columns: 1fr;
    }
    .page-sports__card-image {
        height: 180px;
    }

    /* Mobile image, video, and container adaptations */
    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-sports video,
    .page-sports__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-sports__section,
    .page-sports__card,
    .page-sports__container,
    .page-sports__video-section,
    .page-sports__video-container,
    .page-sports__video-wrapper,
    .page-sports__cta-buttons,
    .page-sports__button-group,
    .page-sports__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }
    .page-sports__video-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile for video section */
    }
    .page-sports__cta-buttons {
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column; /* Stack buttons vertically on mobile */
    }
    .page-sports__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-sports__faq-answer {
        padding: 0 20px;
    }
    .page-sports__faq-item.active .page-sports__faq-answer {
        padding: 10px 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .page-sports__hero-title {
        font-size: 2em;
    }
    .page-sports__hero-description {
        font-size: 0.95em;
    }
    .page-sports__section-title {
        font-size: 1.6em;
    }
    .page-sports__card-title {
        font-size: 1.3em;
    }
}

/* Ensure content area images are not too small */
.page-sports img {
  min-width: 200px;
  min-height: 200px;
  /* Ensure no filter is applied to change image color */
  filter: none;
}

/* Specific override for card images to ensure they meet the minimum size requirement if their default display size is smaller */
.page-sports__card-image {
  min-width: 200px;
  min-height: 200px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}