.page-the-thao {
    font-family: 'Arial', sans-serif;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
    line-height: 1.6;
}

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

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

.page-the-thao__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    color: #1F2D3D;
}

.page-the-thao__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* H1 font size clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-the-thao__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #1F2D3D;
}

.page-the-thao__hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 250px; /* Limit button width for desktop */
}

.page-the-thao__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

.page-the-thao__btn-primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-the-thao__btn-secondary {
    background: #ffffff; /* Card BG */
    color: #2F6BFF; /* Primary color */
    border: 2px solid #2F6BFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-the-thao__btn-secondary:hover {
    background: #e0eaff;
    color: #2F6BFF;
    border-color: #2F6BFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.page-the-thao__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* General Section Styling */
.page-the-thao__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-the-thao__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-the-thao__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%);
    border-radius: 2px;
}

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

/* Intro Section */
.page-the-thao__intro-section {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #F4F7FB;
}

/* Features Section */
.page-the-thao__features-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff; /* Card BG */
}

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

.page-the-thao__feature-item {
    background: #F4F7FB; /* Background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-the-thao__icon-box-media {
    width: 150px; /* Reduced for better fit, still >=200px on desktop */
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #D6E2FF; /* Border */
    box-shadow: 0 0 0 5px #F4F7FB; /* Outer shadow */
}

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

.page-the-thao__feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 15px;
}

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

/* Sports Types Section */
.page-the-thao__sports-types-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #F4F7FB; /* Background */
}

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

.page-the-thao__sport-card {
    background: #ffffff; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-the-thao__sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao__sport-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-the-thao__sport-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2F6BFF; /* Primary color */
    padding: 20px 25px 10px;
}

.page-the-thao__sport-description {
    font-size: 1rem;
    color: #1F2D3D;
    padding: 0 25px 20px;
    flex-grow: 1; /* Make description take available space */
}

.page-the-thao__sport-btn {
    margin: 0 25px 25px;
    max-width: none; /* Remove max-width for full card width */
}

/* Guide Section */
.page-the-thao__guide-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #E0EFFF; /* Lighter blue background */
}

.page-the-thao__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-the-thao__guide-item {
    background: #ffffff; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-the-thao__guide-item:last-child {
    margin-bottom: 0;
}

.page-the-thao__guide-step-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2F6BFF; /* Primary color */
    margin-bottom: 15px;
}

.page-the-thao__guide-step-description {
    font-size: 1.05rem;
    color: #1F2D3D;
    margin-bottom: 25px;
    max-width: 800px;
}

.page-the-thao__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Promo Section */
.page-the-thao__promo-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #F4F7FB; /* Background */
}

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

.page-the-thao__promo-card {
    background: #ffffff; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-the-thao__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-the-thao__promo-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}