.page-the-thao {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF3E6; /* Text Main on dark body background */
    background-color: #0D0E12; /* Background */
}

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

/* Hero Section */
.page-the-thao__hero-section {
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #0D0E12;
}

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

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

.page-the-thao__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* H1 title size, clamp for responsiveness */
    font-weight: 700;
    line-height: 1.2;
    color: #FF8C1A; /* Main color for emphasis */
    margin-bottom: 20px;
}

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

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

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary,
.page-the-thao__btn-link {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-the-thao__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-the-thao__btn-primary:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
}

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

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

.page-the-thao__btn-link {
    background: none;
    border: none;
    color: #FFA53A;
    padding: 0;
    font-size: 0.9em;
    text-decoration: underline;
}

.page-the-thao__btn-link:hover {
    color: #FFB04D; /* Glow */
}

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

.page-the-thao__main-visual {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Intro Section (Module 1) */
.page-the-thao__intro-section {
    padding: 80px 0;
    background-color: #17191F; /* Card BG */
    text-align: center;
}

.page-the-thao__dark-section {
    background-color: #17191F; /* Card BG */
    color: #FFF3E6;
}

.page-the-thao__section-title {
    font-size: 2.5em;
    color: #FF8C1A;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-the-thao__section-description {
    font-size: 1.1em;
    color: #FFF3E6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-the-thao__feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-the-thao__feature-item {
    flex: 1 1 30%;
    min-width: 280px;
    background-color: #0D0E12; /* Background */
    border: 1px solid #A84F0C; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-the-thao__icon-box-media {
    width: 200px; /* Adjust from 400px for better fit */
    height: 200px; /* Adjust from 400px for better fit */
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FF8C1A;
    box-shadow: 0 0 15px rgba(255, 140, 26, 0.5);
}

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

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

.page-the-thao__feature-text {
    font-size: 1em;
    color: #FFF3E6;
}

/* Content Area (About Sports) */
.page-the-thao__content-area {
    padding: 80px 0;
    background-color: #0D0E12; /* Background */
}

.page-the-thao__text-block {
    font-size: 1.05em;
    color: #FFF3E6;
    margin-bottom: 25px;
}

.page-the-thao__image-with-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.page-the-thao__image-with-text--reverse {
    flex-direction: row-reverse;
}

.page-the-thao__image-wrapper {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-the-thao__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao__text-wrapper {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-the-thao__sub-title {
    font-size: 2em;
    color: #FFA53A;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-the-thao__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-the-thao__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #FFF3E6;
}

.page-the-thao__list li::before {
    content: '•';
    color: #FF8C1A;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-the-thao__list--columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}