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

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

.page-the-thao__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap-reverse;
}

@media (max-width: 768px) {
    .page-the-thao__hero {
        padding: 60px 20px;
        flex-direction: column;
        text-align: center;
    }
}

.page-the-thao__hero-content {
    flex: 1;
    min-width: 300px;
}

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

.page-the-thao__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-the-thao__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

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

.page-the-thao__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .page-the-thao__hero-actions {
        justify-content: center;
    }
}

.page-the-thao__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
}

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

.page-the-thao__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

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

.page-the-thao__btn--secondary:hover {
    background-color: #fff;
    color: #007bff;
}

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

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

.page-the-thao__btn--outline:hover {
    background-color: #ffc107;
    color: #000;
}

.page-the-thao__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

.page-the-thao__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .page-the-thao__section-title {
        font-size: 2em;
    }
}

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

.page-the-thao__features, .page-the-thao__sports-categories, .page-the-thao__how-to-bet, .page-the-thao__promotions, .page-the-thao__faqs {
    padding: 60px 0;
}

@media (max-width: 768px) {
    .page-the-thao__features, .page-the-thao__sports-categories, .page-the-thao__how-to-bet, .page-the-thao__promotions, .page-the-thao__faqs {
        padding: 40px 0;
    }
}

.page-the-thao__features {
    background-color: #f8f9fa;
}

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

.page-the-thao__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-the-thao__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: none; /* Ensure no color filters */
}

.page-the-thao__feature-heading {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-the-thao__feature-text {
    color: #555;
}

.page-the-thao__sports-categories {
    background-color: #fff;
}

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

.page-the-thao__category-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-the-thao__category-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: none; /* Ensure no color filters */
}

.page-the-thao__category-heading {
    font-size: 1.3em;
    color: #007bff;
    margin: 20px 0 10px;
    padding: 0 15px;
    font-weight: 600;
}

.page-the-thao__category-text {
    color: #555;
    padding: 0 15px 20px;
}

.page-the-thao__how-to-bet {
    background-color: #e9f5ff;
}

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

.page-the-thao__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.page-the-thao__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #007bff;
}

.page-the-thao__step-heading {
    font-size: 1.4em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-the-thao__promotions {
    background-color: #fff;
}

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

.page-the-thao__promo-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-the-thao__promo-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: none; /* Ensure no color filters */
}

.page-the-thao__promo-heading {
    font-size: 1.4em;
    color: #007bff;
    margin: 20px 0 10px;
    padding: 0 15px;
    font-weight: 600;
}

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

.page-the-thao__cta {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-the-thao__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .page-the-thao__cta-title {
        font-size: 2.2em;
    }
}

.page-the-thao__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.page-the-thao__faqs {
    background-color: #f8f9fa;
}

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

.page-the-thao__faq-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding: 25px;
}

.page-the-thao__faq-question {
    font-size: 1.2em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 600;
}

.page-the-thao__faq-answer {
    color: #555;
    padding-left: 15px;
    border-left: 3px solid #ffc107;
    margin-top: 15px;
}

.text-highlight {
    color: #ffc107;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-the-thao__hero {
        flex-direction: column-reverse;
        text-align: center;
    }
    .page-the-thao__hero-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .page-the-thao__hero-title {
        font-size: 2em;
    }
    .page-the-thao__hero-description {
        font-size: 1em;
    }
    .page-the-thao__btn {
        width: 100%;
        text-align: center;
    }
    .page-the-thao__section-title {
        font-size: 1.8em;
    }
    .page-the-thao__cta-title {
        font-size: 1.8em;
    }
}