.page-the-thao {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: Arial, sans-serif;
}

.page-the-thao__hero-section {
    padding-top: 10px; /* Aligns with shared header offset */
    padding-bottom: 60px;
    background-color: #0D0E12;
    color: #FFF3E6;
}

.page-the-thao__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 40px 16px;
    gap: 30px;
}

.page-the-thao__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
}

.page-the-thao__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFA53A; /* Using auxiliary color for contrast on dark background */
}

.page-the-thao__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF3E6;
}

.page-the-thao__cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary,
.page-the-thao__btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
    max-width: 100%;
}

.page-the-thao__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    border: 2px solid transparent;
}

.page-the-thao__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-the-thao__btn-secondary {
    background-color: transparent;
    color: #FFA53A;
    border: 2px solid #A84F0C; /* Using Border color */
}

.page-the-thao__btn-secondary:hover {
    background-color: #A84F0C;
    color: #FFF3E6;
}

.page-the-thao__btn-link {
    background-color: transparent;
    color: #FFA53A;
    border: 1px solid #A84F0C;
    padding: 8px 15px;
    font-size: 0.9rem;
}

.page-the-thao__btn-link:hover {
    background-color: #FFA53A;
    color: #0D0E12;
}

.page-the-thao__hero-image {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: center;
}

.page-the-thao__hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-the-thao__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #FFA53A;
    text-align: center;
    margin-bottom: 25px;
}

.page-the-thao__section-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #FFF3E6;
}

.page-the-thao__dark-section {
    background-color: #17191F; /* Card BG */
    padding: 60px 0;
}

.page-the-thao__light-bg {
    background-color: #0D0E12; /* Main BG */
    padding: 60px 0;
}

.page-the-thao__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.page-the-thao__intro-section .page-the-thao__section-title {
    color: #FFA53A;
}

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

.page-the-thao__feature-item {
    text-align: center;
    background-color: #0D0E12; /* Main BG for feature items */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C;
}

.page-the-thao__icon-box-media {
    width: 200px;
    height: 200px;
    aspect-ratio: 1/1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFA53A;
    box-shadow: 0 0 15px #FFB04D; /* Glow color */
}

.page-the-thao__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.page-the-thao__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFA53A;
    margin-bottom: 15px;
}

.page-the-thao__feature-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF3E6;
}

.page-the-thao__sports-overview .page-the-thao__section-title {
    color: #FFA53A;
}

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

.page-the-thao__sport-card,
.page-the-thao__promo-card {
    background-color: #17191F; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C;
    display: flex;
    flex-direction: column;
}

.page-the-thao__sport-card img,
.page-the-thao__promo-card img {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-the-thao__sport-card .page-the-thao__card-title,
.page-the-thao__promo-card .page-the-thao__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFA53A;
    padding: 15px 20px 10px;
}

.page-the-thao__sport-card .page-the-thao__card-description,
.page-the-thao__promo-card .page-the-thao__card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #FFF3E6;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-the-thao__sport-card .page-the-thao__btn-link,
.page-the-thao__promo-card .page-the-thao__btn-link {
    margin: 0 20px 20px;
    align-self: flex-start;
}

.page-the-thao__cta-center {
    text-align: center;
    margin-top: 50px;
}

.page-the-thao__guide-section .page-the-thao__section-title {
    color: #FFA53A;
}

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

.page-the-thao__guide-step {
    background-color: #0D0E12; /* Main BG */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #A84F0C;
    text-align: center;
}

.page-the-thao__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFA53A;
    color: #0D0E12;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 0 10px #FFB04D;
}

.page-the-thao__step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFA53A;
    margin-bottom: 15px;
}

.page-the-thao__step-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF3E6;
}

.page-the-thao__promo-section .page-the-thao__section-title {
    color: #FFA53A;
}

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

.page-the-thao__features-section .page-the-thao__section-title {
    color: #FFA53A;
}

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

.page-the-thao__feature-item-large {
    background-color: #0D0E12; /* Main BG */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #A84F0C;
    text-align: left;
}

.page-the-thao__feature-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFA53A;
    margin-bottom: 15px;
}

.page-the-thao__feature-item-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF3E6;
}

.page-the-thao__support-section .page-the-thao__section-title {
    color: #FFA53A;
}

.page-the-thao__faq-section .page-the-thao__section-title {
    color: #FFA53A;
}

.page-the-thao__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-the-thao__faq-item {
    background-color: #0D0E12; /* Main BG */
    border: 1px solid #A84F0C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-the-thao__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFA53A;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.page-the-thao__faq-question::-webkit-details-marker,
.page-the-thao__faq-question::marker {
    display: none;
}

.page-the-thao__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: #FFA53A;
    transition: transform 0.3s ease;
}

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

.page-the-thao__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6;
}

.page-the-thao__faq-answer p {
    margin-bottom: 10px;
}

.page-the-thao img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .page-the-thao__hero-container {
        flex-direction: column;
        text-align: center;
    }

    .page-the-thao__hero-content {
        text-align: center;
    }

    .page-the-thao__cta-group {
        justify-content: center;
    }

    .page-the-thao__hero-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-the-thao__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-the-thao__hero-title {
        font-size: 2.2rem;
    }

    .page-the-thao__hero-description {
        font-size: 1rem;
    }

    .page-the-thao__cta-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-the-thao__btn-primary,
    .page-the-thao__btn-secondary,
    .page-the-thao a[class*="button"],
    .page-the-thao 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-the-thao__content-area {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .page-the-thao__section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .page-the-thao__section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-the-thao__dark-section,
    .page-the-thao__light-bg {
        padding: 40px 0;
    }

    .page-the-thao__feature-grid,
    .page-the-thao__sport-cards,
    .page-the-thao__promo-cards,
    .page-the-thao__guide-steps,
    .page-the-thao__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-the-thao__icon-box-media {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }

    .page-the-thao__feature-title {
        font-size: 1.3rem;
    }

    .page-the-thao__sport-card img,
    .page-the-thao__promo-card img {
        
    }

    .page-the-thao__sport-card .page-the-thao__card-title,
    .page-the-thao__promo-card .page-the-thao__card-title {
        font-size: 1.2rem;
    }

    .page-the-thao__guide-step {
        padding: 25px;
    }

    .page-the-thao__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .page-the-thao__step-title {
        font-size: 1.3rem;
    }

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

    .page-the-thao__faq-toggle {
        font-size: 1.5rem;
    }

    .page-the-thao__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }

    .page-the-thao img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-the-thao__section,
    .page-the-thao__card,
    .page-the-thao__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}