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

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

.page-the-thao__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-the-thao__section-description {
    font-size: 18px;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary,
.page-the-thao__btn-link,
.page-the-thao__btn-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-the-thao__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
    color: #ffffff;
    border: none;
}

.page-the-thao__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-the-thao__btn-secondary {
    background: #ffffff; /* Card BG */
    color: #2F6BFF; /* Main Color */
    border: 2px solid #2F6BFF;
}

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

.page-the-thao__btn-link {
    background: #2F6BFF;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
}

.page-the-thao__btn-link:hover {
    opacity: 0.9;
}

.page-the-thao__btn-text-link {
    color: #2F6BFF;
    text-decoration: underline;
    background: none;
    padding: 0;
    font-size: 16px;
    font-weight: normal;
}

.page-the-thao__btn-text-link:hover {
    color: #6FA3FF;
}

/* Hero Section */
.page-the-thao__hero-section {
    padding-top: 10px; /* Small top spacing for non-homepage */
    padding-bottom: 60px;
    background-color: #F4F7FB; /* Background */
}

.page-the-thao__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px 16px;
}

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

.page-the-thao__main-title {
    font-size: 48px;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-the-thao__intro-description {
    font-size: 18px;
    color: #1F2D3D;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

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

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

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

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

.page-the-thao__feature-item:hover {
    transform: translateY(-5px);
}

.page-the-thao__icon-box-media {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D6E2FF; /* Border */
    box-shadow: 0 0 0 8px #D6E2FF;
}

.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: 24px;
    font-weight: bold;
    color: #2F6BFF; /* Main Color */
    margin-bottom: 15px;
}

.page-the-thao__feature-text {
    font-size: 16px;
    color: #1F2D3D;
    line-height: 1.6;
}

/* Sports Categories Section */
.page-the-thao__sports-categories {
    padding: 80px 0;
    background-color: #F4F7FB; /* Background */
}

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

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

.page-the-thao__category-card:hover {
    transform: translateY(-5px);
}

.page-the-thao__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-the-thao__category-title {
    font-size: 22px;
    font-weight: bold;
    color: #2F6BFF; /* Main Color */
    padding: 20px 20px 10px;
}

.page-the-thao__category-text {
    font-size: 15px;
    color: #1F2D3D;
    padding: 0 20px 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.page-the-thao__category-card .page-the-thao__btn-link {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* How-to-Bet Section */
.page-the-thao__how-to-bet {
    padding: 80px 0;
    background-color: #ffffff; /* Card BG */
}

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

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

.page-the-thao__step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.page-the-thao__step-title {
    font-size: 22px;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
}

.page-the-thao__step-text {
    font-size: 16px;
    color: #1F2D3D;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Promotions Section */
.page-the-thao__promotions-section {
    padding: 80px 0;
    background-color: #F4F7FB; /* Background */
}

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

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

.page-the-thao__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-the-thao__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-the-thao__promo-title {
    font-size: 22px;
    font-weight: bold;
    color: #2F6BFF; /* Main Color */
    margin-bottom: 10px;
}

.page-the-thao__promo-text {
    font-size: 16px;
    color: #1F2D3D;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-the-thao__promo-card .page-the-thao__btn-primary {
    align-self: flex-start;
}

/* Trust Section */
.page-the-thao__trust-section {
    padding: 80px 0;
    background-color: #ffffff; /* Card BG */
}

.page-the-thao__trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-the-thao__trust-item {
    background: #F4F7FB; /* Background */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-the-thao__trust-icon {
    width: 100px;
    height: 75px; /* Adjust height to maintain aspect ratio for a 400x300 image */
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.page-the-thao__trust-title {
    font-size: 22px;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
}

.page-the-thao__trust-text {
    font-size: 16px;
    color: #1F2D3D;
    line-height: 1.6;
}

/* FAQ Section */
.page-the-thao__faq-section {
    padding: 80px 0;
    background-color: #F4F7FB; /* Background */
}

.page-the-thao__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-the-thao__faq-item {
    background: #ffffff; /* Card BG */
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-the-thao__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    font-size: 18px;
    outline: none;
}

.page-the-thao__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-the-thao__faq-qtext {
    flex-grow: 1;
    color: #1F2D3D;
}

.page-the-thao__faq-toggle {
    font-size: 28px;
    line-height: 1;
    margin-left: 15px;
    color: #2F6BFF; /* Main Color */
}

.page-the-thao__faq-item[open] .page-the-thao__faq-toggle {
    content: "−";
}

.page-the-thao__faq-answer {
    padding: 0 25px 20px;
    font-size: 16px;
    color: #1F2D3D;
    line-height: 1.6;
}

.page-the-thao__faq-answer p {
    margin-bottom: 10px;
}

.page-the-thao__faq-answer .page-the-thao__btn-text-link {
    margin-top: 5px;
    display: inline-block;
}

/* Call to Action Section */
.page-the-thao__call-to-action {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #6FA3FF 0%, #2F6BFF 100%); /* Custom gradient for CTA */
    color: #ffffff;
}

.page-the-thao__call-to-action .page-the-thao__section-title {
    color: #ffffff;
}

.page-the-thao__call-to-action .page-the-thao__section-description {
    color: #ffffff;
    margin-bottom: 40px;
}

.page-the-thao__btn-large {
    font-size: 20px;
    padding: 15px 40px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-the-thao__main-title {
        font-size: 42px;
    }

    .page-the-thao__section-title {
        font-size: 32px;
    }

    .page-the-thao__hero-container {
        flex-direction: column;
        text-align: center;
    }

    .page-the-thao__hero-content {
        flex: none;
        width: 100%;
    }

    .page-the-thao__hero-image {
        flex: none;
        width: 100%;
    }

    .page-the-thao__cta-buttons {
        justify-content: center;
    }

    .page-the-thao__icon-box-media {
        width: 180px;
        height: 180px;
    }

    .page-the-thao__category-image {
        height: 180px;
    }

    .page-the-thao__promo-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .page-the-thao {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-the-thao__container {
        padding: 0 15px !important;
    }

    .page-the-thao__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-the-thao__main-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .page-the-thao__intro-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
}