:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-the-thao {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-main); /* Default text color for the page */
    background-color: var(--color-background); /* Page background */
}

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

.page-the-thao__section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--color-text-main);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.page-the-thao__section-title--light {
    color: var(--color-text-main);
}

.page-the-thao__text-block {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--color-text-secondary);
}

.page-the-thao__text-block--light {
    color: var(--color-text-main);
}

.page-the-thao a {
    color: var(--color-secondary);
    text-decoration: none;
}

.page-the-thao a:hover {
    text-decoration: underline;
}

/* Buttons */
.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.page-the-thao__btn-primary {
    background: var(--color-button-gradient);
    color: #ffffff;
}

.page-the-thao__btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 0 15px var(--color-glow);
}

.page-the-thao__btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.page-the-thao__btn-secondary:hover {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 0 15px var(--color-glow);
}

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

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

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

.page-the-thao__main-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-the-thao__intro-text {
    font-size: 20px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    text-align: left;
}

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

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

.page-the-thao__hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Overview Section */
.page-the-thao__overview-section {
    background-color: var(--color-card-bg);
    padding: 60px 0;
}

.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: var(--color-background);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-the-thao__feature-card:hover {
    transform: translateY(-10px);
}

.page-the-thao__feature-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    min-width: 200px;
    min-
}

.page-the-thao__card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.page-the-thao__card-text {
    font-size: 16px;
    color: var(--color-text-secondary);
}

/* Sports Types Section */
.page-the-thao__sports-types-section {
    padding: 60px 0;
    background-color: var(--color-background);
}

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

.page-the-thao__sport-item {
    background-color: var(--color-card-bg);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-the-thao__sport-item:hover {
    transform: translateY(-8px);
}

.page-the-thao__sport-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    min-width: 200px;
    min-
}

.page-the-thao__item-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.page-the-thao__item-description {
    font-size: 16px;
    color: var(--color-text-secondary);
}