.page-sports {
    font-family: 'Arial', sans-serif;
    color: #FFF6D6; /* Main text color */
    background: #0A0A0A; /* Page background color */
    line-height: 1.6;
    padding-bottom: 50px; /* Ensure space above footer */
}

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

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, shared.css handles body padding */
    margin-bottom: 50px;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    text-align: center;
}

.page-sports__hero-image {
    width: 100%;
    max-height: 675px; /* Max height for desktop hero */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

.page-sports__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Desktop: cover to fill space */
    border-radius: 10px;
}

.page-sports__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-sports__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    color: #FFD36B; /* Glow color for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-sports__description {
    font-size: 1.1rem;
    color: #FFF6D6;
    margin-bottom: 30px;
}

.page-sports__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal;
    word-wrap: break-word;
}

.page-sports__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #111111; /* Dark text for light button */
    border: none;
    box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-sports__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-sports__btn-secondary {
    background: transparent;
    color: #FFD36B; /* Glow color for secondary button text */
    border: 2px solid #FFD36B; /* Glow color for border */
}

.page-sports__btn-secondary:hover {
    background: rgba(255, 211, 107, 0.1);
    transform: translateY(-2px);
}

/* General Section Styling */
.page-sports__section {
    padding: 50px 0;
    margin-bottom: 30px;
}

.page-sports__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #F2C14E; /* Main brand color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-sports__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FFD36B, transparent);
    border-radius: 2px;
}

.page-sports__text-block {
    font-size: 1rem;
    color: #FFF6D6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Sports Grid Section */
.page-sports__sport-types {
    background: #111111; /* Card BG color */
    border-radius: 10px;
    padding: 60px 0;
}

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

.page-sports__sport-card {
    background: #0A0A0A; /* Background color for card content */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-sports__sport-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-sports__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2C14E; /* Main brand color for card titles */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-sports__card-description {
    font-size: 0.95rem;
    color: #FFF6D6;
    padding: 0 15px;
    margin-bottom: 20px;
    text-align: justify;
}

.page-sports__card-link {
    display: inline-block;
    padding: 8px 20px;
    background: #F2C14E; /* Main brand color for card links */
    color: #111111; /* Dark text for light button */
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.page-sports__card-link:hover {
    background: #FFD36B; /* Auxiliary color on hover */
}

/* Advantages Section */
.page-sports__advantages {
    background: #0A0A0A; /* Page background color */
}

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

.page-sports__advantage-item {
    background: #111111; /* Card BG color */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-sports__advantage-item img {
    width: 100%;
     /* Fixed height for consistency */
    object-fit: contain; /* Contain for feature images */
    display: block;
    margin: 0 auto 20px;
    max-width: 250px; /* Limit image width */
}

.page-sports__advantage-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFD36B; /* Glow color for advantage titles */
    margin-bottom: 10px;
}

.page-sports__advantage-description {
    font-size: 0.95rem;
    color: #FFF6D6;
    text-align: justify;
}

/* Promotions Section */
.page-sports__promotions {
    background: #111111; /* Card BG color */
    border-radius: 10px;
    padding: 60px 0;
    text-align: center;
}

.page-sports__promo-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    border-radius: 10px;
    border: 1px solid #3A2A12;
}

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

.page-sports__promo-list li {
    font-size: 1rem;
    color: #FFF6D6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-sports__promo-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #F2C14E; /* Main brand color for bullet */
}

/* Guide Section */
.page-sports__guide {
    background: #0A0A0A; /* Page background color */
}

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

.page-sports__step-item {
    background: #111111; /* Card BG color */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 211, 107, 0.2);
}

.page-sports__step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #111111; /* Dark text for light button */
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 216, 106, 0.3);
}

.page-sports__step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #F2C14E; /* Main brand color for step titles */
    margin-bottom: 15px;
}

.page-sports__step-description {
    font-size: 0.95rem;
    color: #FFF6D6;
    text-align: justify;
}

/* FAQ Section */
.page-sports__faq-section {
    background: #111111; /* Card BG color */
    border-radius: 10px;
    padding: 60px 0;
}

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

details.page-sports__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #3A2A12; /* Border color */
    overflow: hidden;
    background: #0A0A0A; /* Background color for FAQ item */
    transition: all 0.3s ease;
}

details.page-sports__faq-item[open] {
    background: #0A0A0A; /* Keep background consistent when open */
    border-color: #F2C14E; /* Highlight border when open */
}

details.page-sports__faq-item summary.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #FFF6D6; /* Text main color for question */
    font-weight: 600;
}

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

details.page-sports__faq-item summary.page-sports__faq-question:hover {
    background: rgba(255, 211, 107, 0.05);
    color: #FFD36B; /* Glow color on hover */
}

.page-sports__faq-qtext {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: left;
}

.page-sports__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: #F2C14E; /* Main brand color for toggle icon */
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
    transition: transform 0.3s ease;
}

details.page-sports__faq-item[open] .page-sports__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to form cross */
    color: #FFD36B;
}

details.page-sports__faq-item .page-sports__faq-answer {
    padding: 0 20px 20px;
    background: #0A0A0A; /* Background color for answer */
    border-radius: 0 0 8px 8px;
    color: #FFF6D6;
    font-size: 0.95rem;
}

.page-sports__faq-answer p {
    margin: 0;
    padding: 0;
}

/* Conclusion Section */
.page-sports__conclusion {
    padding-bottom: 80px;
    text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-sports__hero-image {
        max-height: 500px;
    }
    .page-sports__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-sports__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    }
    .page-sports__sport-card img,
    .page-sports__advantage-item img {
        
    }
}

@media (max-width: 768px) {
    .page-sports {
        padding-bottom: 30px;
    }
    .page-sports__container {
        padding: 0 15px;
    }

    /* HERO 主图区域 */
    .page-sports__hero-section {
        padding-top: 10px; /* Small top padding, not var(--header-offset) */
        margin-bottom: 30px;
    }
    .page-sports__hero-image {
        max-height: unset !important; /* Allow height to be auto */
        aspect-ratio: unset !important; /* Allow aspect ratio to be determined by content */
        margin-bottom: 20px;
    }
    .page-sports__hero-image img {
        object-fit: contain !important; /* Use contain to prevent cropping */
        width: 100% !important;
        height: auto !important;
    }
    .page-sports__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-sports__description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    /* 按钮与按钮容器 */
    .page-sports__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-sports__btn-primary,
    .page-sports__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    /* General Section Styling */
    .page-sports__section {
        padding: 30px 0;
        margin-bottom: 20px;
    }
    .page-sports__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
        padding-bottom: 10px;
    }
    .page-sports__section-title::after {
        width: 60px;
        height: 3px;
    }
    .page-sports__text-block {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    /* Sản phẩm/dịch vụ/nội dung hiển thị (Product Grid Section) */
    .page-sports__sports-grid {
        grid-template-columns: 1fr 1fr !important; /* 2 columns for mobile */
        gap: 20px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-sports__sport-card img {
        
    }
    .page-sports__card-title {
        font-size: 1.3rem;
    }
    .page-sports__card-description {
        font-size: 0.85rem;
    }


    /* Advantages Section */
    .page-sports__advantages-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-sports__advantage-item {
        padding: 20px;
    }
    .page-sports__advantage-item img {
        
        margin-bottom: 15px;
    }
    .page-sports__advantage-title {
        font-size: 1.2rem;
    }
    .page-sports__advantage-description {
        font-size: 0.85rem;
    }

    /* Promotions Section */
    .page-sports__promotions {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    .page-sports__promo-image {
        margin-bottom: 20px;
        border-width: 0; /* Remove border on mobile for cleaner look */
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-sports__promo-list {
        margin: 20px auto;
        padding: 0 10px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-sports__promo-list li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    /* Guide Section */
    .page-sports__guide {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    .page-sports__guide-steps {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 20px;
        margin-top: 30px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-sports__step-item {
        padding: 25px;
    }
    .page-sports__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .page-sports__step-title {
        font-size: 1.2rem;
    }
    .page-sports__step-description {
        font-size: 0.85rem;
    }

    /* FAQ Section */
    .page-sports__faq-section {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    details.page-sports__faq-item {
        margin-bottom: 10px;
    }
    details.page-sports__faq-item summary.page-sports__faq-question {
        padding: 15px;
    }
    .page-sports__faq-qtext {
        font-size: 1rem;
    }
    .page-sports__faq-toggle {
        font-size: 20px;
        width: 24px;
        margin-left: 10px;
    }
    details.page-sports__faq-item .page-sports__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.85rem;
    }

    /* General image and container rules for mobile */
    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-sports__section,
    .page-sports__card,
    .page-sports__container,
    .page-sports__hero-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Article Body (if present) */
    .page-sports__article-body {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* For any general content text */
    .page-sports p, .page-sports li {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
}