.page-ththao {
    background-color: #140C0C;
    color: #FFF1E8;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for main content */
}

/* Hero Section */
.page-ththao__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image block above text block */
    align-items: center;
    text-align: center;
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-ththao__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width on larger screens */
    margin-bottom: 20px; /* Space between image and text */
}

.page-ththao__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-ththao__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1; /* Ensure text is above any potential background elements */
}

.page-ththao__hero-title {
    font-size: clamp(2em, 4vw, 3em); /* H1 font size with clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F3C54D; /* Gold color for main title */
}

.page-ththao__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-ththao__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-ththao__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    color: #FFF1E8;
    border: none;
    cursor: pointer;
}

.page-ththao__btn--primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
}

.page-ththao__btn--primary:hover {
    filter: brightness(1.1);
}

.page-ththao__btn--secondary {
    background-color: #C61F1F;
    border: 1px solid #6A1E1E;
}

.page-ththao__btn--secondary:hover {
    background-color: #E53030;
}

.page-ththao__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* Intro Section */
.page-ththao__intro-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-ththao__intro-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 40px;
    color: #F3C54D;
}

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

.page-ththao__intro-item {
    background-color: #2A1212;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #6A1E1E;
    text-align: left;
}

.page-ththao__intro-item-title {
    font-size: 1.5em;
    color: #E53030;
    margin-bottom: 15px;
}

.page-ththao__intro-item-description {
    font-size: 1em;
    color: #FFF1E8;
}

/* Popular Sports Section */
.page-ththao__popular-sports {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-ththao__popular-sports-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 40px;
    color: #F3C54D;
}

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

.page-ththao__sport-card {
    background-color: #2A1212;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #6A1E1E;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.3s ease;
}

.page-ththao__sport-card:hover {
    transform: translateY(-5px);
}

.page-ththao__sport-card-image {
    width: 100%;
    height: auto; /* Allow image to scale proportionally */
    object-fit: cover;
    display: block;
}

.page-ththao__sport-card-title {
    font-size: 1.4em;
    color: #E53030;
    margin: 15px 15px 10px;
}

.page-ththao__sport-card-title a {
    color: #E53030;
    text-decoration: none;
}

.page-ththao__sport-card-title a:hover {
    text-decoration: underline;
}

.page-ththao__sport-card-description {
    font-size: 0.95em;
    color: #FFF1E8;
    padding: 0 15px 15px;
    flex-grow: 1; /* Push button to bottom */
}

.page-ththao__sport-card .page-ththao__btn {
    align-self: flex-start;
    margin: 0 15px 15px;
    background-color: #C61F1F;
}
.page-ththao__sport-card .page-ththao__btn:hover {
    background-color: #E53030;
}

/* Promotions Section */
.page-ththao__promotions-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-ththao__promotions-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 40px;
    color: #F3C54D;
}

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

.page-ththao__promotion-card {
    background-color: #2A1212;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #6A1E1E;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-ththao__promotion-card:hover {
    transform: translateY(-5px);
}

.page-ththao__promotion-card-image {
    width: 100%;
    height: auto; /* Allow image to scale proportionally */
    object-fit: cover;
    display: block;
}

.page-ththao__promotion-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-ththao__promotion-card-title {
    font-size: 1.4em;
    color: #E53030;
    margin-bottom: 10px;
}

.page-ththao__promotion-card-description {
    font-size: 0.95em;
    color: #FFF1E8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-ththao__promotion-card .page-ththao__btn {
    align-self: flex-start;
    background-color: #C61F1F;
}
.page-ththao__promotion-card .page-ththao__btn:hover {
    background-color: #E53030;
}

/* Guide Section */
.page-ththao__guide-section {
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-ththao__guide-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #F3C54D;
}

.page-ththao__guide-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* FAQ Section */
.page-ththao__faq-section {
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-ththao__faq-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #F3C54D;
}

.page-ththao__faq-accordion {
    border: 1px solid #6A1E1E;
    border-radius: 10px;
    overflow: hidden;
    background-color: #2A1212;
}

.page-ththao__faq-item {
    border-bottom: 1px solid #6A1E1E;
}

.page-ththao__faq-item:last-child {
    border-bottom: none;
}

.page-ththao__faq-question {
    background-color: #2A1212;
    color: #FFF1E8;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-ththao__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-ththao__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-ththao__faq-question:hover {
    background-color: #3a1c1c;
}

.page-ththao__faq-answer {
    padding: 0 25px;
    background-color: #140C0C;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-ththao__faq-answer p {
    padding: 15px 0;
    font-size: 1em;
    color: #FFF1E8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-ththao__hero-section {
        padding: 10px 0 20px;
    }
    .page-ththao__hero-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }
    .page-ththao__hero-description {
        font-size: 1em;
    }
    .page-ththao__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-ththao__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

    .page-ththao__intro-section,
    .page-ththao__popular-sports,
    .page-ththao__promotions-section,
    .page-ththao__guide-section,
    .page-ththao__faq-section {
        padding: 30px 15px;
    }

    .page-ththao__intro-title,
    .page-ththao__popular-sports-title,
    .page-ththao__promotions-title,
    .page-ththao__guide-title,
    .page-ththao__faq-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-ththao__intro-grid,
    .page-ththao__sports-grid,
    .page-ththao__promotions-grid {
        grid-template-columns: 1fr;
    }

    /* Ensure images are responsive on mobile */
    .page-ththao img {
        max-width: 100%;
        height: auto;
    }
}

/* Global content area image minimums (not for header/footer shared images) */
.page-ththao img {
    min-width: 200px;
    min-height: 200px;
}

/* Specific override for card images on mobile to allow scaling down */
@media (max-width: 768px) {
    .page-ththao__sport-card-image,
    .page-ththao__promotion-card-image {
        min-width: unset; /* Allow to scale down below 200px if container is smaller */
        min-height: unset;
    }
}