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

.page-th-thao__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-th-thao__section-spacing {
    padding: 60px 0;
}

.page-th-thao__text-center {
    text-align: center;
}

.page-th-thao__section-title {
    font-size: 2.8em;
    color: #8B0000;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.page-th-thao__section-title--light {
    color: #FFD700;
}

.page-th-thao__section-title--dark {
    color: #8B0000;
}

.page-th-thao__section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-th-thao__section-description--light {
    color: #eee;
}

.page-th-thao__section-description--dark {
    color: #333;
}

/* Hero Section */
.page-th-thao__hero-section {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-th-thao__hero-title {
    font-size: 4em;
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-th-thao__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.page-th-thao__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-th-thao__btn--primary {
    background-color: #8B0000;
    color: #FFD700;
    border: 2px solid #8B0000;
}

.page-th-thao__btn--primary:hover {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #FFD700;
}

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

.page-th-thao__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #FFD700;
}

.page-th-thao__btn--outline {
    background-color: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
}

.page-th-thao__btn--outline:hover {
    background-color: #8B0000;
    color: #FFD700;
}

.page-th-thao__btn--outline-light {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-th-thao__btn--outline-light:hover {
    background-color: #FFD700;
    color: #8B0000;
}

.page-th-thao__btn--card {
    padding: 10px 20px;
    font-size: 0.95em;
    background-color: #FFD700;
    color: #8B0000;
    border: 1px solid #FFD700;
    margin-top: auto; /* Push button to bottom */
}

.page-th-thao__btn--card:hover {
    background-color: #8B0000;
    color: #FFD700;
    border-color: #8B0000;
}

.page-th-thao__btn--step {
    padding: 10px 20px;
    font-size: 0.95em;
    background-color: #8B0000;
    color: #FFD700;
    border: 1px solid #8B0000;
    margin-top: 20px;
}

.page-th-thao__btn--step:hover {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #FFD700;
}

.page-th-thao__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Flex Layout */
.page-th-thao__flex-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-th-thao__flex-layout--reverse {
    flex-direction: row-reverse;
}

.page-th-thao__content-block {
    flex: 1;
}

.page-th-thao__image-block {
    flex: 1;
    text-align: center;
}

.page-th-thao__image-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* About Section */
.page-th-thao__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-th-thao__feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.page-th-thao__feature-title {
    font-size: 1.4em;
    color: #8B0000;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-th-thao__feature-list p {
    font-size: 1em;
    color: #555;
    margin: 0;
}

/* Icons */
.page-th-thao__icon {
    font-size: 1.5em;
    color: #FFD700;
    background-color: #8B0000;
    border-radius: 50%;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page-th-thao__icon--check::before { content: '✓'; }
.page-th-thao__icon--star::before { content: '★'; }
.page-th-thao__icon--mobile::before { content: '📱'; }
.page-th-thao__icon--bell::before { content: '🔔'; }
.page-th-thao__icon--lock::before { content: '🔒'; }
.page-th-thao__icon--graph::before { content: '📈'; }
.page-th-thao__icon--chat::before { content: '💬'; }
.page-th-thao__icon--email::before { content: '📧'; }
.page-th-thao__icon--phone::before { content: '📞'; }
.page-th-thao__icon--shield::before { content: '🛡️'; }

/* Categories Section */
.page-th-thao__bg-dark {
    background-color: #8B0000;
    color: #fff;
}

.page-th-thao__bg-gold {
    background-color: #FFD700;
    color: #333;
}

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

.page-th-thao__category-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-th-thao__card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.page-th-thao__card-title {
    font-size: 1.8em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-th-thao__card-text {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* How-To Section */
.page-th-thao__step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-th-thao__step-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-th-thao__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    background-color: #8B0000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-th-thao__step-title {
    font-size: 1.5em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-th-thao__step-text {
    color: #555;
    flex-grow: 1;
}

/* Promo Section */
.page-th-thao__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-th-thao__promo-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.page-th-thao__promo-title {
    font-size: 1.4em;
    color: #8B0000;
    margin-top: 0;
    margin-bottom: 5px;
}

.page-th-thao__promo-list p {
    font-size: 1em;
    color: #333;
    margin: 0;
}

/* App Section */
.page-th-thao__app-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-th-thao__app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

.page-th-thao__app-features li .page-th-thao__icon {
    font-size: 1.2em;
}

/* Support Section */
.page-th-thao__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-th-thao__contact-item {
    background-color: #a00000; /* Darker red for contrast */
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-th-thao__contact-item .page-th-thao__icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #8B0000; /* Icon color */
    background-color: #FFD700; /* Background color */
}

.page-th-thao__contact-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-th-thao__contact-text {
    color: #ccc;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsible Gambling Section */
.page-th-thao__responsible-features {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    color: #555;
}

.page-th-thao__responsible-features p {
    margin-bottom: 15px;
}

.page-th-thao__responsible-features ul {
    list-style: none;
    padding: 0;
}

.page-th-thao__responsible-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-th-thao__responsible-features li strong {
    color: #8B0000;
}

.page-th-thao__responsible-features li .page-th-thao__icon {
    font-size: 1.2em;
    background-color: #FFD700;
    color: #8B0000;
}

/* Final CTA Section */
.page-th-thao__final-cta-section .page-th-thao__section-title {
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-th-thao__flex-layout {
        flex-direction: column;
        text-align: center;
    }

    .page-th-thao__flex-layout--reverse {
        flex-direction: column;
    }

    .page-th-thao__hero-title {
        font-size: 3em;
    }

    .page-th-thao__hero-subtitle {
        font-size: 1.2em;
    }

    .page-th-thao__section-title {
        font-size: 2.2em;
    }

    .page-th-thao__content-block, .page-th-thao__image-block {
        flex: none;
        width: 100%;
    }

    .page-th-thao__image-block {
        margin-top: 30px;
    }

    .page-th-thao__how-to-section .page-th-thao__step-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-th-thao__hero-title {
        font-size: 2.5em;
    }

    .page-th-thao__hero-subtitle {
        font-size: 1em;
    }

    .page-th-thao__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-th-thao__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-th-thao__section-title {
        font-size: 1.8em;
    }

    .page-th-thao__section-description {
        font-size: 0.95em;
    }

    .page-th-thao__section-spacing {
        padding: 40px 0;
    }

    .page-th-thao__grid-layout, .page-th-thao__contact-methods {
        grid-template-columns: 1fr;
    }

    .page-th-thao__feature-title, .page-th-thao__promo-title, .page-th-thao__card-title, .page-th-thao__step-title, .page-th-thao__contact-title {
        font-size: 1.2em;
    }

    .page-th-thao__feature-list li, .page-th-thao__promo-list li, .page-th-thao__app-features li, .page-th-thao__responsible-features li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-th-thao__feature-list li p, .page-th-thao__promo-list li p, .page-th-thao__app-features li, .page-th-thao__responsible-features li {
        margin-top: 5px;
    }

    .page-th-thao__icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .page-th-thao__hero-title {
        font-size: 2em;
    }

    .page-th-thao__section-title {
        font-size: 1.6em;
    }

    .page-th-thao__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}