.page-the-thao {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F3F8FF; /* Text Main on dark body background */
    background-color: transparent; /* Body background from shared.css */
}

.page-the-thao__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

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

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

.page-the-thao__sub-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #F3F8FF; /* Text Main */
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-the-thao__text-block p,
.page-the-thao__feature-text,
.page-the-thao__promo-text,
.page-the-thao__faq-answer p,
.page-the-thao__trust-item p,
.page-the-thao__guide-item p {
    color: #AFC4E8; /* Text Secondary */
}

/* Images */
.page-the-thao img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.page-the-thao__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button gradient */
    color: #F3F8FF; /* Text Main */
    border: none;
}

.page-the-thao__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 115, 246, 0.4);
}

.page-the-thao__btn-secondary {
    background: transparent;
    color: #F3F8FF; /* Text Main */
    border: 2px solid #2B73F6; /* Lighter blue for border */
}

.page-the-thao__btn-secondary:hover {
    background: rgba(43, 115, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 115, 246, 0.2);
}

/* Dark sections for contrast */
.page-the-thao__dark-section {
    background-color: #113B7A; /* Main color */
    padding: 60px 0;
}