/* Base styles for the Thể Thao page */
.page-the-thao {
    font-family: 'Arial', sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: transparent; /* Body background handled by shared.css var(--page-bg) */
}

.page-the-thao__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 16px;
    box-sizing: border-box;
}

.page-the-thao__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #F2C14E; /* Main color */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-the-thao__section-description {
    font-size: 1.1em;
    color: #FFF6D6;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-the-thao__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.6)), url(''); /* Placeholder, image comes from GALLERY */
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-the-thao__hero-content-wrapper {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 60px 16px;
}

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

.page-the-thao__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #FFD36B; /* Glow */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-the-thao__hero-description {
    font-size: 1.2em;
    color: #FFF6D6;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-the-thao__hero-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: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
    max-width: 100%;
}

.page-the-thao__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
}

.page-the-thao__btn-primary:hover {
    background: linear-gradient(180deg, #FFD36B 0%, #F2C14E 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-the-thao__btn-secondary {
    background: transparent;
    color: #FFD36B;
    border: 2px solid #FFD36B;
}

.page-the-thao__btn-secondary:hover {
    background: #FFD36B;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

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

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

/* Sports Overview Section */
.page-the-thao__sports-overview-section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Background */
}

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

.page-the-thao__sport-card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-the-thao__sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.2);
}

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

.page-the-thao__sport-card-title {
    font-size: 1.6em;
    font-weight: 600;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-the-thao__sport-card-text {
    font-size: 1em;
    color: #FFF6D6;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-the-thao__sport-card-link {
    display: inline-block;
    color: #FFD36B;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #FFD36B;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-the-thao__sport-card-link:hover {
    background-color: #FFD36B;
    color: #111111;
}

/* Betting Guide Section */
.page-the-thao__betting-guide-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-the-thao__guide-step {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-the-thao__icon-box-media {
    width: 180px;
    height: 180px;
    aspect-ratio: 1/1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #F2C14E;
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

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

.page-the-thao__guide-step-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #F2C14E;
    margin-bottom: 10px;
}

.page-the-thao__guide-step-text {
    font-size: 0.95em;
    color: #FFF6D6;
    line-height: 1.5;
}

.page-the-thao__guide-cta {
    text-align: center;
}

/* Why Choose Section */
.page-the-thao__why-choose-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

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

.page-the-thao__feature-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-the-thao__feature-card-title {
    font-size: 1.6em;
    font-weight: 600;
    color: #FFD36B;
    margin-bottom: 10px;
}

.page-the-thao__feature-card-text {
    font-size: 1em;
    color: #FFF6D6;
    line-height: 1.5;
}

/* FAQ Section */
.page-the-thao__faq-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-the-thao__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.page-the-thao__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #FFF6D6;
}

.page-the-thao__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: #F2C14E;
    cursor: pointer;
    background-color: #1a1a1a;
    border-bottom: 1px solid #3A2A12;
    user-select: none;
    list-style: none;
}

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

.page-the-thao__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    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: 15px 25px 20px;
    font-size: 1em;
    color: #FFF6D6;
    line-height: 1.6;
    background-color: #111111;
}

.page-the-thao__faq-answer p {
    margin: 0;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .page-the-thao__container,
    .page-the-thao__hero-content-wrapper {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

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

    .page-the-thao__hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }

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

    .page-the-thao__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .page-the-thao__btn-primary,
    .page-the-thao__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 20px;
        padding-right: 20px;
    }

    .page-the-thao__hero-main-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-the-thao__section-title {
        font-size: 2em;
    }

    .page-the-thao__section-description {
        font-size: 1em;
    }

    .page-the-thao__sports-grid,
    .page-the-thao__guide-steps,
    .page-the-thao__features-grid {
        grid-template-columns: 1fr; /* Single column layout for grids */
        gap: 20px;
    }

    .page-the-thao__sport-card,
    .page-the-thao__guide-step,
    .page-the-thao__feature-card {
        padding: 20px;
    }

    .page-the-thao__sport-card-image,
    .page-the-thao__hero-image-block img,
    .page-the-thao__betting-guide-section img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-the-thao__icon-box-media {
        width: 150px;
        height: 150px;
        border-width: 2px;
    }

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

    .page-the-thao__faq-answer {
        padding: 10px 20px 15px;
    }

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