/* style/the-thao.css */
.page-the-thao {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-the-thao__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #CC0000 0%, #FFD700 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.page-the-thao__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-the-thao__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-the-thao__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-the-thao__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-the-thao__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-the-thao__btn--primary {
    background-color: #FFD700;
    color: #CC0000;
    border: 2px solid #FFD700;
}

.page-the-thao__btn--primary:hover {
    background-color: #CC0000;
    color: #FFD700;
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao__btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.page-the-thao__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 25px;
    background-color: #CC0000;
    color: #FFD700;
    border: 1px solid #CC0000;
}

.page-the-thao__btn--small:hover {
    background-color: #FFD700;
    color: #CC0000;
    border-color: #FFD700;
}

.page-the-thao__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
    border-radius: 50px;
    background-color: #FFD700;
    color: #CC0000;
    border: 2px solid #FFD700;
}

.page-the-thao__btn--large:hover {
    background-color: #CC0000;
    color: #FFD700;
    border-color: #FFD700;
}

.page-the-thao__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-the-thao__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.8); /* Allowed for background images to enhance contrast */
}

.page-the-thao__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-the-thao__section:nth-of-type(even) {
    background-color: #fff;
}

.page-the-thao__section-title {
    font-size: 2.5em;
    color: #CC0000;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-the-thao__section-intro {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-the-thao__features-grid,
.page-the-thao__sports-grid,
.page-the-thao__steps-grid,
.page-the-thao__promo-grid,
.page-the-thao__support-options {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

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

.page-the-thao__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #CC0000;
}

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

.page-the-thao__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-the-thao__feature-heading {
    font-size: 1.5em;
    color: #CC0000;
    margin-bottom: 15px;
}

.page-the-thao__feature-text {
    color: #666;
    font-size: 1em;
}

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

.page-the-thao__sport-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.page-the-thao__sport-name {
    font-size: 1.8em;
    color: #CC0000;
    margin: 20px 0 10px;
}

.page-the-thao__sport-description {
    color: #666;
    padding: 0 20px 20px;
}

.page-the-thao__sport-card .page-the-thao__btn {
    margin-bottom: 20px;
}

.page-the-thao__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: left;
}

.page-the-thao__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 60px;
    min-height: 220px;
}

.page-the-thao__step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #CC0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5em;
}

.page-the-thao__step-heading {
    font-size: 1.4em;
    color: #CC0000;
    margin-bottom: 10px;
}

.page-the-thao__step-text {
    color: #666;
    margin-bottom: 20px;
}

.page-the-thao__how-to-image-wrapper {
    margin-top: 60px;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 15px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.page-the-thao__how-to-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.page-the-thao__analysis-content {
    text-align: left;
    color: #444;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto;
}

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

.page-the-thao__analysis-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
}

.page-the-thao__list-icon {
    color: #FFD700;
    font-size: 1.5em;
    margin-right: 15px;
    line-height: 1;
    font-weight: bold;
}

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

.page-the-thao__promo-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.page-the-thao__promo-title {
    font-size: 1.6em;
    color: #CC0000;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.page-the-thao__promo-description {
    color: #666;
    padding: 0 15px 20px;
}

.page-the-thao__promo-card .page-the-thao__btn {
    margin-bottom: 20px;
}

.page-the-thao__cta-bottom {
    margin-top: 60px;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-the-thao__cta-bottom p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 30px;
}

.page-the-thao__mobile-app-content {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    flex-wrap: wrap;
}

.page-the-thao__mobile-app-text {
    flex: 1;
    min-width: 300px;
}

.page-the-thao__mobile-app-text .page-the-thao__section-title {
    text-align: left;
    margin-top: 0;
}

.page-the-thao__mobile-app-text p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 25px;
}

.page-the-thao__mobile-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-the-thao__mobile-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.page-the-thao__mobile-app-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-the-thao__mobile-app-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-the-thao__support-options {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-the-thao__support-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-the-thao__support-item:hover {
    transform: translateY(-10px);
}

.page-the-thao__support-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-the-thao__support-item h3 {
    font-size: 1.4em;
    color: #CC0000;
    margin-bottom: 10px;
}

.page-the-thao__support-item p {
    color: #666;
    margin-bottom: 20px;
}

.page-the-thao__section--final-cta {
    background-color: #CC0000;
    color: #fff;
    padding: 80px 20px;
    border-radius: 20px;
    margin-top: 60px;
}

.page-the-thao__section--final-cta .page-the-thao__section-title {
    color: #FFD700;
    font-size: 2.8em;
}

.page-the-thao__section--final-cta .page-the-thao__section-intro {
    color: #fff;
    font-size: 1.2em;
}

@media (max-width: 992px) {
    .page-the-thao__hero-title {
        font-size: 2.5em;
    }
    .page-the-thao__section-title {
        font-size: 2em;
    }
    .page-the-thao__mobile-app-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    .page-the-thao__mobile-app-text .page-the-thao__section-title {
        text-align: center;
    }
    .page-the-thao__mobile-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-the-thao__hero {
        padding: 60px 15px;
    }
    .page-the-thao__hero-title {
        font-size: 2em;
    }
    .page-the-thao__hero-description {
        font-size: 1em;
    }
    .page-the-thao__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-the-thao__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-the-thao__section {
        padding: 40px 15px;
    }
    .page-the-thao__section-title {
        font-size: 1.8em;
    }
    .page-the-thao__section-intro {
        font-size: 0.95em;
    }
    .page-the-thao__feature-heading,
    .page-the-thao__sport-name,
    .page-the-thao__step-heading,
    .page-the-thao__promo-title,
    .page-the-thao__support-item h3 {
        font-size: 1.3em;
    }
    .page-the-thao__analysis-content,
    .page-the-thao__analysis-list li,
    .page-the-thao__mobile-features li {
        font-size: 1em;
    }
    .page-the-thao__cta-bottom p {
        font-size: 1em;
    }
    .page-the-thao__section--final-cta .page-the-thao__section-title {
        font-size: 2.2em;
    }
    .page-the-thao__section--final-cta .page-the-thao__section-intro {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-the-thao__hero-title {
        font-size: 1.8em;
    }
    .page-the-thao__section-title {
        font-size: 1.6em;
    }
    .page-the-thao__btn {
        width: 100%;
        max-width: 250px;
    }
    .page-the-thao__step-item {
        padding-top: 50px;
        min-height: auto;
    }
    .page-the-thao__step-number {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
    }
}