.page-ththao {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.page-ththao__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding to avoid header overlap */
    background-color: #100224; /* Dark background for hero area */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.page-ththao__main-visual {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9; /* Standard aspect ratio for hero images */
    max-width: 100%;
}

.page-ththao__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-ththao__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: bold;
    color: #F2C14E;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-ththao__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
    border: 1px solid #3A2A12;
    min-width: 200px;
}

.page-ththao__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-ththao__sports-categories,
.page-ththao__features-section,
.page-ththao__cta-bottom {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.page-ththao__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #FFD36B;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-ththao__section-description {
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-ththao__sport-card {
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #3A2A12;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.page-ththao__card-title {
    font-size: 1.5rem;
    color: #FFD36B;
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-ththao__card-link {
    display: inline-block;
    margin: 0 15px 20px;
    padding: 10px 20px;
    background: #F2C14E;
    color: #111111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-ththao__card-link:hover {
    background-color: #FFD36B;
}

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

.page-ththao__feature-item {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-ththao__feature-item img {
    width: 100%;
    max-width: 250px; /* Constrain feature image width */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-ththao__feature-title {
    font-size: 1.4rem;
    color: #FFD36B;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-ththao__feature-description {
    font-size: 0.95rem;
    color: #FFF6D6;
}

.page-ththao__cta-bottom {
    background-color: #111111;
    border-radius: 12px;
    padding: 50px 30px;
    margin-top: 60px;
    border: 1px solid #3A2A12;
}

.page-ththao__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-ththao__cta-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-ththao__cta-button--large {
    padding: 18px 35px;
    font-size: 1.1rem;
    min-width: 250px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-ththao__hero-section,
    .page-ththao__sports-categories,
    .page-ththao__features-section,
    .page-ththao__cta-bottom {
        padding: 40px 15px;
    }

    .page-ththao__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-ththao__description,
    .page-ththao__section-description,
    .page-ththao__cta-description {
        font-size: 1rem;
    }

    .page-ththao__cta-button {
        min-width: 180px;
        padding: 12px 25px;
    }

    .page-ththao__sports-grid,
    .page-ththao__features-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .page-ththao__sport-card img,
    .page-ththao__feature-item img {
        max-width: 100%;
        height: auto; /* Ensure images scale down */
        object-fit: cover;
    }

    /* Ensure all content area images are responsive and do not overflow */
    .page-ththao img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .page-ththao__hero-content {
        padding: 30px 10px;
    }

    .page-ththao__main-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }

    .page-ththao__cta-button--large {
        padding: 15px 25px;
        font-size: 1rem;
        min-width: unset;
        width: 100%;
    }

    .page-ththao__sports-grid,
    .page-ththao__features-list {
        grid-template-columns: 1fr;
    }
}

/* Ensure content area images maintain minimum size if not explicitly set by content */
.page-ththao img:not(.page-ththao__main-visual) {
    min-width: 200px;
    min-height: 200px;
}