body {
    background-color: #08160F; /* Custom Background */
    color: #F2FFF6; /* Custom Text Main */
}

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

.page-sports__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    text-align: center;
    overflow: hidden;
}

.page-sports__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for large screens */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

.page-sports__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    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;
}

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

.page-sports__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
}

.page-sports__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-sports__btn-secondary {
    background-color: transparent;
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border */
}

.page-sports__btn-secondary:hover {
    background-color: #2E7A4E; /* Border */
    color: #F2FFF6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 122, 78, 0.4);
}

.page-sports__section {
    padding: 60px 20px;
    background-color: #08160F; /* Background */
}

.page-sports__dark-section {
    background-color: #111A15; /* Slightly darker variant for contrast */
}

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

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

.page-sports__text-block {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    text-align: justify;
}

.page-sports__text-block a {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

.page-sports__text-block a:hover {
    color: #2AD16F;
}

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

.page-sports__card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 350px; /* Ensure cards have minimum height */
}

.page-sports__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(87, 227, 141, 0.2);
}

.page-sports__feature-image,
.page-sports__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-sports__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-sports__card-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-sports__btn-small {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.page-sports__promo-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    text-align: left;
}

.page-sports__promo-list li {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.page-sports__promo-list li strong {
    color: #57E38D; /* Glow */
    margin-right: 10px;
}

.page-sports__video-section {
    padding-top: 10px; /* Small top padding for video section */
    padding-bottom: 60px;
    background-color: #08160F; /* Background */
    text-align: center;
}

.page-sports__video-container {
    width: 100%; /* Desktop width */
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-sports__video-wrapper {
    position: relative;
    display: block; /* Make it block to take full width */
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin: 30px auto;
    background-color: #000; /* Fallback for video area */
}

.page-sports__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
}

.page-sports__video-caption {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-top: 10px;
}

.page-sports__faq-section {
    background-color: #08160F; /* Background */
    padding-top: 60px;
    padding-bottom: 60px;
}

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

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

.page-sports__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    transition: background-color 0.3s ease;
}

.page-sports__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-sports__faq-item summary:hover {
    background-color: #11A84E; /* Main Color */
}

.page-sports__faq-qtext {
    flex-grow: 1;
    text-align: left;
}

.page-sports__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow */
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
    color: #F2C14E; /* Gold */
}

.page-sports__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: left;
}

.page-sports__faq-answer p {
    margin-bottom: 10px;
    color: #A7D9B8; /* Text Secondary */
}

.page-sports__faq-answer a {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

.page-sports__final-cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-sports__hero-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .page-sports__hero-image {
        height: 400px;
    }

    .page-sports__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
    }

    .page-sports__description {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
    }

    .page-sports__section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    }

    .page-sports__text-block,
    .page-sports__card-text,
    .page-sports__promo-list li,
    .page-sports__faq-answer p,
    .page-sports__video-caption {
        font-size: 1rem !important;
    }

    .page-sports__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-sports__btn-primary,
    .page-sports__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        font-size: 1rem !important;
        padding: 12px 20px !important;
    }

    .page-sports__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-sports__section,
    .page-sports__dark-section {
        padding: 40px 15px;
    }

    .page-sports__card {
        padding: 20px;
        min-height: auto;
    }

    .page-sports__feature-image,
    .page-sports__category-image {
        height: 180px;
        min-width: 200px !important;
        min-height: 200px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-sports__video-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-sports__video-container,
    .page-sports__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-sports video,
    .page-sports__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-sports__faq-item summary {
        font-size: 1rem !important;
        padding: 15px;
    }

    .page-sports__faq-answer {
        padding: 0 15px 15px;
    }

    .page-sports__faq-toggle {
        font-size: 1.5rem !important;
    }

    .page-sports__promo-list li {
        font-size: 1rem !important;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .page-sports__hero-image {
        height: 300px;
    }

    .page-sports__main-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem) !important;
    }

    .page-sports__section-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem) !important;
    }

    .page-sports__btn-primary,
    .page-sports__btn-secondary {
        padding: 10px 15px !important;
        font-size: 0.9rem !important;
    }
}