.page-the-thao {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Matches var(--secondary-color) */
}

.page-the-thao__hero-section {
    padding-top: 10px; /* Small top padding, header offset handled by body */
    padding-bottom: 60px;
    background-color: #F8F8F8;
}

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

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

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

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

.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-tertiary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.page-the-thao__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-the-thao__btn-primary:hover {
    background-color: #1a8cc2;
    border-color: #1a8cc2;
}

.page-the-thao__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-the-thao__btn-secondary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-the-thao__btn-tertiary {
    background-color: #EA7C07; /* Login color */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

.page-the-thao__btn-tertiary:hover {
    background-color: #c96706;
    border-color: #c96706;
}

.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: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-the-thao__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px;
}

.page-the-thao__section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
}

.page-the-thao__text-block {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #444444;
    text-align: justify;
}

.page-the-thao__intro-section.page-the-thao__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-the-thao__features-section.page-the-thao__dark-bg {
    background-color: #26A9E0;
    color: #FFFFFF;
    padding: 60px 0;
}

.page-the-thao__features-section .page-the-thao__section-title {
    color: #FFFFFF;
}

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

.page-the-thao__feature-card {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-the-thao__icon-box-media {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFFFFF;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
}

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

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

.page-the-thao__feature-description {
    font-size: 1rem;
    color: #E0F7FA;
}

.page-the-thao__types-section.page-the-thao__light-bg {
    background-color: #F8F8F8;
    color: #333333;
}

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