.page-sports {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
}

.page-sports__dark-bg {
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff; /* White text for dark background */
}

.page-sports__light-bg {
    background-color: #ffffff; /* Auxiliary color */
    color: #333333; /* Dark text for light background */
}

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

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

.page-sports__section-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 20px;
    color: inherit;
    line-height: 1.2;
}

.page-sports__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: inherit;
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding as body handles header offset */
    padding-bottom: 60px;
    text-align: center;
}

.page-sports__hero-image-wrapper {
    width: 100%;
    height: 675px; /* Fixed height for desktop hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.page-sports__hero-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-sports__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__btn-primary {
    display: inline-block;
    background-color: #EA7C07; /* Login color for primary action */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports__btn-primary:hover {
    background-color: #d16b06;
}

.page-sports__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #26A9E0; /* Brand primary color */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    border: 2px solid #26A9E0;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

/* About Section */
.page-sports__about-section .page-sports__section-title,
.page-sports__about-section .page-sports__section-description {
    color: #333333;
}

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

.page-sports__feature-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-sports__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-sports__feature-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-sports__feature-text {
    font-size: 1em;
    color: #555555;
}

/* Categories Section */
.page-sports__categories-section .page-sports__section-title,
.page-sports__categories-section .page-sports__section-description {
    color: #ffffff;
}

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

.page-sports__category-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.page-sports__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-sports__category-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-sports__category-text {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-sports__category-button {
    margin-top: auto;
}

/* Features Highlight Section */
.page-sports__features-highlight-section .page-sports__section-title,
.page-sports__features-highlight-section .page-sports__section-description {
    color: #333333;
}

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

.page-sports__highlight-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-sports__highlight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-sports__highlight-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-sports__highlight-text {
    font-size: 1em;
    color: #555555;
}

/* Guide Section */
.page-sports__guide-section .page-sports__section-title,
.page-sports__guide-section .page-sports__section-description {
    color: #ffffff;
}

.page-sports__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports__step-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.page-sports__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #EA7C07;
    color: #ffffff;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.page-sports__step-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-sports__step-text {
    font-size: 1em;
    color: #f0f0f0;
}

.page-sports__guide-button {
    margin-top: 40px;
}

/* Promotions Section */
.page-sports__promotions-section .page-sports__section-title,
.page-sports__promotions-section .page-sports__section-description {
    color: #333333;
}

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

.page-sports__promotion-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.page-sports__promotion-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-sports__promotion-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-sports__promotion-text {
    font-size: 1em;
    color: #555555;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-sports__promotion-button {
    margin-top: auto;
}

/* Safety Section */
.page-sports__safety-section .page-sports__section-title,
.page-sports__safety-section .page-sports__section-description {
    color: #ffffff;
}

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

.page-sports__safety-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.page-sports__safety-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-sports__safety-text {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-sports__safety-button {
    margin-top: auto;
}

/* FAQ Section */
.page-sports__faq-section .page-sports__section-title,
.page-sports__faq-section .page-sports__section-description {
    color: #333333;
}

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

.page-sports__faq-item {
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #26A9E0;
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

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

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

.page-sports__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #26A9E0;
    margin-left: 15px;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
    content: '−';
}

.page-sports__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

/* CTA Section */
.page-sports__cta-section {
    padding: 80px 0;
}

.page-sports__cta-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-sports__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

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

/* General image responsiveness */
.page-sports img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Media Queries */
@media (max-width: 1024px) {
    .page-sports__section-title {
        font-size: 2.5em;
    }

    .page-sports__hero-title {
        font-size: clamp(2.2em, 4.5vw, 3em);
    }

    .page-sports__hero-image-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-sports__hero-section {
        padding-top: 10px !important; /* Small top padding */
        padding-bottom: 40px;
    }
    
    .page-sports__hero-image-wrapper {
        height: 300px !important;
    }

    .page-sports__hero-title {
        font-size: clamp(1.8em, 8vw, 2.5em) !important;
        padding: 0 15px;
    }

    .page-sports__hero-description {
        font-size: 1em;
        padding: 0 15px;
    }

    /* 通用图片与容器 */
    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-sports__container,
    .page-sports__section,
    .page-sports__feature-item,
    .page-sports__category-card,
    .page-sports__highlight-item,
    .page-sports__step-item,
    .page-sports__promotion-card,
    .page-sports__safety-item,
    .page-sports__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-sports__section-title {
        font-size: 2em !important;
        padding: 0 15px;
    }

    .page-sports__section-description {
        font-size: 0.9em;
        padding: 0 15px;
    }

    /* 产品展示图区域 (Categories Grid) */
    .page-sports__categories-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .page-sports__feature-grid,
    .page-sports__highlight-grid,
    .page-sports__guide-steps,
    .page-sports__promotions-grid,
    .page-sports__safety-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* 按钮与按钮容器 */
    .page-sports__btn-primary,
    .page-sports__btn-secondary,
    .page-sports a[class*="button"],
    .page-sports a[class*="btn"] {
        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__hero-button,
    .page-sports__category-button,
    .page-sports__guide-button,
    .page-sports__promotion-button,
    .page-sports__safety-button,
    .page-sports__cta-button {
        margin-bottom: 15px;
    }

    .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;
        flex-wrap: wrap !important;
        gap: 10px;
        flex-direction: column;
    }

    /* 其他内容模块 */
    .page-sports__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

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

    .page-sports__cta-section {
        padding: 60px 0;
    }

    .page-sports__cta-title {
        font-size: 2.2em !important;
        padding: 0 15px;
    }

    .page-sports__cta-description {
        font-size: 1em;
        padding: 0 15px;
    }

    .page-sports__feature-title, .page-sports__category-title, .page-sports__highlight-title, .page-sports__step-title, .page-sports__promotion-title, .page-sports__safety-title {
        font-size: 1.4em;
    }
}