.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__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px; /* Space for content below image */
    background-color: #08160F;
}

.page-sports__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
}

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

.page-sports__hero-content {
    padding: 20px;
    text-align: center;
    max-width: 900px;
    margin-top: 20px;
}

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

.page-sports__intro-text {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.page-sports__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-sports__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-sports__cta-button--centered {
    margin-top: 40px;
    text-align: center;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Video Section */
.page-sports__video-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
    text-align: center;
    padding-top: 10px; /* Small top padding as body handles header offset */
}

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

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

.page-sports__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-sports__video-link:hover .page-sports__video-overlay {
    opacity: 1;
}

.page-sports__cta-button--play {
    padding: 18px 35px;
    font-size: 1.2rem;
}

/* About Section */
.page-sports__about-section {
    padding: 60px 0;
    background-color: #08160F;
}

.page-sports__content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.page-sports__content-wrapper p {
    flex: 1;
    min-width: 300px;
    color: #F2FFF6; /* Text Main */
}

.page-sports__content-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Popular Sports Section */
.page-sports__popular-sports-section {
    padding: 60px 0;
    background-color: #08160F;
}

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

.page-sports__sport-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

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

.page-sports__card-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto; /* Push button to bottom */
}

.page-sports__card-button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Benefits Section */
.page-sports__benefits-section {
    padding: 60px 0;
    background-color: #08160F;
}

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

.page-sports__benefit-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-sports__benefit-title {
    color: #57E38D; /* Glow */
    font-size: 1.4rem;
    margin-bottom: 10px;
}

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

/* Guide Section */
.page-sports__guide-section {
    padding: 60px 0;
    background-color: #08160F;
}

.page-sports__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: guide-step;
}

.page-sports__step-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.page-sports__step-number {
    counter-increment: guide-step;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 3px solid #08160F; /* Background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-sports__step-title {
    color: #F2FFF6; /* Text Main */
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

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

/* Security Section */
.page-sports__security-section {
    padding: 60px 0;
    background-color: #08160F;
}

.page-sports__security-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.page-sports__security-image {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__security-text {
    flex: 1;
    min-width: 300px;
}

.page-sports__security-text p {
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

/* FAQ Section */
.page-sports__faq-section {
    padding: 60px 0;
    background-color: #08160F;
}

.page-sports__faq-list {
    max-width: 800px;
    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;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
    font-size: 1.15rem;
    font-weight: 600;
    border-bottom: 1px solid #1E3A2A; /* Divider */
    list-style: none;
}

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

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

.page-sports__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-sports__faq-answer {
    padding: 15px 25px 20px;
    background-color: #11271B; /* Card BG */
    color: #A7D9B8; /* Text Secondary */
    font-size: 1rem;
}

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

    .page-sports__content-image,
    .page-sports__security-image {
        max-width: 100%;
    }

    .page-sports__content-wrapper,
    .page-sports__security-content {
        flex-direction: column;
        text-align: center;
    }

    .page-sports__content-wrapper p,
    .page-sports__security-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .page-sports {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-sports__container {
        padding: 0 15px;
    }

    .page-sports__hero-section {
        padding-bottom: 40px;
    }

    .page-sports__hero-content {
        padding: 15px;
    }

    .page-sports__main-title {
        font-size: 2rem;
    }

    .page-sports__intro-text {
        font-size: 1rem;
    }

    .page-sports__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-sports__cta-button--centered {
        margin-top: 30px;
    }

    .page-sports__section-title {
        font-size: 2rem;
        padding-top: 30px;
        margin-bottom: 20px;
    }

    .page-sports__section-description {
        margin-bottom: 30px;
    }

    /* Video section responsive */
    .page-sports__video-section {
        padding: 40px 0;
        padding-top: 10px !important; /* body handles header offset */
    }

    .page-sports__video-wrapper,
    .page-sports__video-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    /* Image responsive rules */
    .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__content-wrapper,
    .page-sports__benefits-grid,
    .page-sports__guide-steps,
    .page-sports__security-content,
    .page-sports__faq-list {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
    }

    .page-sports__content-image,
    .page-sports__security-image {
        max-width: 100%;
        margin: 20px auto;
    }

    .page-sports__sport-card {
        margin-bottom: 20px;
    }

    .page-sports__card-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-sports__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-sports__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.9rem;
    }
    .page-sports__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}