.page-the-thao {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Main text color for dark background */
    background: #0A0A0A; /* Page background color */
}

.page-the-thao__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%); /* Subtle gradient for hero background */
}

.page-the-thao__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px 15px;
}

.page-the-thao__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: #FFF6D6;
}

.page-the-thao__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: bold;
    color: #FFD36B;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-the-thao__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

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

.page-the-thao__btn-secondary {
    background: transparent;
    color: #FFD36B;
    border: 2px solid #FFD36B;
    box-shadow: 0 2px 10px rgba(255, 211, 107, 0.2);
}

.page-the-thao__btn-secondary:hover {
    background: #FFD36B;
    color: #111111;
    transform: translateY(-2px);
}

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

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

.page-the-thao__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #FFD36B;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

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

.page-the-thao__section-description {
    font-size: 1.05rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #FFF6D6;
}

.page-the-thao__content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px;
    box-sizing: border-box;
}

.page-the-thao__dark-section {
    background: #0A0A0A;
    color: #FFF6D6;
}

.page-the-thao__light-bg {
    background: #111111;
    color: #FFF6D6;
}

.page-the-thao__text-block p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #FFF6D6;
}

.page-the-thao__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.page-the-thao__card {
    background: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #FFF6D6;
}

.page-the-thao__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-the-thao__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-the-thao__card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-the-thao__card-title a {
    color: #FFD36B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-the-thao__card-title a:hover {
    color: #F2C14E;
}

.page-the-thao__card p {
    font-size: 0.95rem;
    color: #FFF6D6;
}

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

.page-the-thao__feature-item {
    background: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

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

.page-the-thao__feature-item p {
    font-size: 1rem;
    color: #FFF6D6;
}

.page-the-thao__guide-steps {
    list-style: none;
    counter-reset: guide-step;
    margin-top: 40px;
    padding: 0;
}

.page-the-thao__guide-steps li {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: #FFF6D6;
}

.page-the-thao__guide-steps li::before {
    counter-increment: guide-step;
    content: counter(guide-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(255, 211, 107, 0.3);
}

.page-the-thao__guide-step-title {
    font-size: 1.3rem;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-the-thao__cta-buttons--center {
    justify-content: center;
    margin-top: 50px;
}

.page-the-thao__faq-list {
    margin-top: 40px;
}

.page-the-thao__faq-item {
    background: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-the-thao__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: #FFD36B;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.3s ease;
}

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

.page-the-thao__faq-question:hover {
    background-color: rgba(255, 211, 107, 0.05);
}

.page-the-thao__faq-item[open] .page-the-thao__faq-question {
    background-color: rgba(255, 211, 107, 0.1);
}

.page-the-thao__faq-qtext {
    flex-grow: 1;
}

.page-the-thao__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 20px;
    color: #F2C14E;
}

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

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

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-the-thao {
        font-size: 15px;
        line-height: 1.5;
    }

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

    .page-the-thao__hero-container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .page-the-thao__hero-content,
    .page-the-thao__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-the-thao__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        text-align: center;
    }

    .page-the-thao__description {
        font-size: 1rem;
        text-align: center;
    }

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

    .page-the-thao__btn-primary,
    .page-the-thao__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-the-thao__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 20px;
    }

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

    .page-the-thao__content-container {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-the-thao__grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-the-thao__feature-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .page-the-thao__guide-steps li {
        padding-left: 50px;
        margin-bottom: 25px;
    }

    .page-the-thao__guide-steps li::before {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .page-the-thao__guide-step-title {
        font-size: 1.2rem;
    }

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

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

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

    /* Universal image container and image styles for mobile */
    .page-the-thao img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
    .page-the-thao__text-block,
    .page-the-thao__card,
    .page-the-thao__feature-item,
    .page-the-thao__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}