/* 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 15px;
}

.page-th-thao__hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-th-thao__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 128, 0.6); /* Semi-transparent overlay */
    z-index: 1;
}

.page-th-thao__hero-section .page-th-thao__container {
    position: relative;
    z-index: 2;
}

.page-th-thao__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold color for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-th-thao__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-th-thao__highlight {
    color: #FFD700;
}

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

.page-th-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-th-thao__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #000080; /* Dark Blue */
    border: 2px solid #FFD700;
}

.page-th-thao__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000055;
}

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

.page-th-thao__btn--secondary:hover {
    background-color: #FFD700;
    color: #000080;
}

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

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

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

.page-th-thao__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-th-thao__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7);
}

.page-th-thao__section-title {
    font-size: 2.5em;
    color: #000080; /* Dark Blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-th-thao__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    border-radius: 2px;
}

.page-th-thao__intro-section, 
.page-th-thao__sports-categories, 
.page-th-thao__betting-types, 
.page-th-thao__promotions-section, 
.page-th-thao__betting-guide, 
.page-th-thao__why-choose, 
.page-th-thao__faq-section, 
.page-th-thao__cta-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-th-thao__intro-section,
.page-th-thao__betting-types,
.page-th-thao__betting-guide,
.page-th-thao__why-choose,
.page-th-thao__faq-section {
    background-color: #ffffff;
}

.page-th-thao__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.page-th-thao__brand {
    color: #000080;
    font-weight: bold;
}

.page-th-thao__brand-name {
    color: #FFD700;
    font-weight: bold;
}

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

.page-th-thao__sport-card, .page-th-thao__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-th-thao__card-icon, .page-th-thao__card-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-th-thao__card-title {
    font-size: 1.5em;
    color: #000080; /* Dark Blue */
    margin-bottom: 15px;
}

.page-th-thao__card-description {
    font-size: 1em;
    color: #555;
    margin-bottom: 25px;
}

.page-th-thao__card-link {
    display: inline-block;
    color: #FFD700; /* Gold */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-th-thao__card-link:hover {
    color: #000080; /* Dark Blue */
    border-color: #000080;
}

.page-th-thao__list, .page-th-thao__features-list, .page-th-thao__numbered-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-th-thao__list li, .page-th-thao__features-list li, .page-th-thao__numbered-list li {
    background-color: #f0f0f0;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 5px;
    font-size: 1.05em;
    color: #333;
}

.page-th-thao__numbered-list {
    list-style-type: decimal;
    padding-left: 20px;
}

.page-th-thao__list-strong {
    color: #000080; /* Dark Blue */
}

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

.page-th-thao__promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-th-thao__promo-card .page-th-thao__card-image {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.page-th-thao__promo-card .page-th-thao__btn {
    margin-top: auto; /* Pushes button to the bottom */
}

.page-th-thao__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-th-thao__faq-question {
    font-size: 1.3em;
    color: #000080; /* Dark Blue */
    margin-top: 0;
    margin-bottom: 10px;
}

.page-th-thao__faq-answer {
    font-size: 1.05em;
    color: #555;
    text-align: justify;
}

.page-th-thao__cta-section {
    background-color: #000080; /* Dark Blue */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-th-thao__cta-section .page-th-thao__section-title {
    color: #FFD700; /* Gold */
}

.page-th-thao__cta-section .page-th-thao__section-title::after {
    background-color: #FFD700;
}

.page-th-thao__cta-section .page-th-thao__text-content {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-th-thao__cta-section .page-th-thao__btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-th-thao__hero-title {
        font-size: 2.8em;
    }
    .page-th-thao__hero-description {
        font-size: 1.1em;
    }
    .page-th-thao__section-title {
        font-size: 2em;
    }
    .page-th-thao__grid, .page-th-thao__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-th-thao__hero-title {
        font-size: 2.2em;
    }
    .page-th-thao__hero-description {
        font-size: 1em;
    }
    .page-th-thao__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-th-thao__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-th-thao__section-title {
        font-size: 1.8em;
    }
    .page-th-thao__intro-section, 
    .page-th-thao__sports-categories, 
    .page-th-thao__betting-types, 
    .page-th-thao__promotions-section, 
    .page-th-thao__betting-guide, 
    .page-th-thao__why-choose, 
    .page-th-thao__faq-section, 
    .page-th-thao__cta-section {
        padding: 40px 0;
    }
    .page-th-thao__text-content {
        font-size: 0.95em;
    }
    .page-th-thao__card-title {
        font-size: 1.3em;
    }
    .page-th-thao__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-th-thao__hero-title {
        font-size: 1.8em;
    }
    .page-th-thao__btn {
        width: 90%;
    }
    .page-th-thao__section-title {
        font-size: 1.5em;
    }
    .page-th-thao__grid, .page-th-thao__promo-grid {
        grid-template-columns: 1fr;
    }
}