.page-sports {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

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

.page-sports__container--centered {
    text-align: center;
}

.page-sports__section {
    padding: 60px 0;
}

.page-sports__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* body handles header offset, this is decorative */
    overflow: hidden;
}

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

.page-sports__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text contrast */
}

.page-sports__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 40px 20px;
    box-sizing: border-box;
    background: rgba(8, 22, 15, 0.7); /* Deep Green background with transparency for text readability */
    border-radius: 10px;
}

.page-sports__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for responsive H1 */
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports__hero-description {
    font-size: 1.2rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-sports__cta-buttons--centered {
    margin-top: 40px;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main for button */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-sports__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-sports__btn-primary--large {
    padding: 18px 40px;
    font-size: 1.3rem;
}

.page-sports__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Button */
    border: 2px solid #2AD16F; /* Border */
}

.page-sports__btn-secondary:hover {
    background: #2AD16F; /* Button */
    color: #08160F; /* Background */
}

.page-sports__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-sports__section-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__features-grid,
.page-sports__sports-grid,
.page-sports__steps-grid,
.page-sports__promo-cards {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-sports__feature-item,
.page-sports__sport-card,
.page-sports__step-card,
.page-sports__promo-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-sports__feature-icon,
.page-sports__step-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: rgba(34, 199, 104, 0.2);
    padding: 10px;
    min-width: 80px; /* Ensure min size for icons */
    min-height: 80px;
}

.page-sports__feature-title,
.page-sports__sport-title,
.page-sports__step-title,
.page-sports__promo-title {
    font-size: 1.5rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-sports__feature-text,
.page-sports__sport-text,
.page-sports__step-text,
.page-sports__promo-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    flex-grow: 1; /* Make text take available space for consistent card height */
}

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

.page-sports__tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-sports__tip-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__tip-title {
    font-size: 1.3rem;
    color: #2AD16F; /* Button/Main color for emphasis */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-sports__tip-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-sports__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-sports__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #1a3528; /* Slightly darker background for summary */
    transition: background-color 0.3s ease;
}

.page-sports__faq-question:hover {
    background-color: #2e5a45;
}

.page-sports__faq-item[open] .page-sports__faq-question {
    background-color: #2e5a45;
}

.page-sports__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #2AD16F; /* Button */
}

/* For <details> native toggle */
.page-sports__faq-item > summary {
    list-style: none;
}
.page-sports__faq-item > summary::-webkit-details-marker {
    display: none;
}

.page-sports__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #2E7A4E; /* Border */
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-sports__hero-content {
        padding: 30px 15px;
    }
    .page-sports__main-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    .page-sports__hero-description {
        font-size: 1.1rem;
    }
    .page-sports__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-sports__section {
        padding: 40px 0;
    }
    .page-sports__container {
        padding: 0 15px;
    }
    .page-sports__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem); /* Adjust for smaller screens */
    }
    .page-sports__hero-description {
        font-size: 1rem;
    }
    .page-sports__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-sports__btn-primary,
    .page-sports__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-sports__btn-primary--large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    /* Images responsiveness */
    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-sports__section,
    .page-sports__card,
    .page-sports__container,
    .page-sports__hero-section,
    .page-sports__hero-image-wrapper,
    .page-sports__hero-content,
    .page-sports__feature-item,
    .page-sports__sport-card,
    .page-sports__step-card,
    .page-sports__promo-card,
    .page-sports__tip-item,
    .page-sports__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px; /* Add padding to prevent content touching edges */
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    /* Specific overrides for elements that should not have horizontal padding if container already has it */
    .page-sports__container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-sports__section .page-sports__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-sports__hero-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-sports__hero-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .page-sports__faq-question, .page-sports__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-sports__sport-image,
    .page-sports__promo-image {
        height: auto; /* Allow height to adjust naturally */
    }
    .page-sports__feature-icon,
    .page-sports__step-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        min-height: 60px;
    }
}

/* Ensure no image filter */
.page-sports img {
    filter: none;
}
/* Ensure content area images are not too small */
.page-sports__feature-icon,
.page-sports__step-icon {
    min-width: 80px; /* At least 200x200px rule. These are "icons" but should be large enough to be content images */
    min-height: 80px;
    width: 80px;
    height: 80px;
}
.page-sports__sport-image,
.page-sports__promo-image {
    min-width: 200px;
    min-height: 200px;
}