/* style/th-thao.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #1A2B3C; /* Dark Blue */
    --text-light: #F0F0F0;
    --text-dark: #333333;
    --background-light: #FFFFFF;
    --background-dark: #121212;
    --accent-color: #FF4500; /* Orange-Red for highlights */
    --border-color: #3A4A5B;
}

.page-th-thao {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

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

.page-th-thao section {
    padding: 60px 0;
    text-align: center;
}

.page-th-thao .section-title {
    font-size: 2.8em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.page-th-thao .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-th-thao .section-subtitle {
    font-size: 1.2em;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* Hero Section */
.page-th-thao .hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0D1B2A 100%); /* Dark Blue gradient */
    color: var(--text-light);
}

.page-th-thao .hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-th-thao .hero-image {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

.page-th-thao .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-th-thao .hero-image img:hover {
    transform: scale(1.03);
}

.page-th-thao .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-th-thao .hero-content h1 {
    font-size: 3.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-th-thao .hero-content p {
    font-size: 1.4em;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-th-thao .cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-th-thao .cta-button:hover {
    background: #FFC107; /* Slightly darker gold */
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
}

.page-th-thao .cta-button-small {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-th-thao .cta-button-small:hover {
    background: #FFC107;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

/* Intro Section */
.page-th-thao .section-intro {
    background-color: var(--background-light);
    color: var(--text-dark);
}

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

.page-th-thao .intro-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-th-thao .intro-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-th-thao .intro-icon {
    width: 120px; /* Increased size for content images */
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-th-thao .intro-item h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-th-thao .intro-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* Sports Categories Section */
.page-th-thao .section-sports-categories {
    background-color: #F8F8F8;
}

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

.page-th-thao .sport-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid var(--border-color);
}

.page-th-thao .sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-th-thao .sport-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-th-thao .sport-info {
    padding: 25px;
}

.page-th-thao .sport-info h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-th-thao .sport-info h3 .card-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-th-thao .sport-info h3 .card-link:hover {
    color: var(--primary-color);
}

.page-th-thao .sport-info p {
    font-size: 0.95em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-th-thao .read-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-th-thao .read-more-button:hover {
    background-color: #0F202F; /* Darker secondary */
    transform: translateY(-2px);
}

/* Live Betting Section */
.page-th-thao .section-live-betting {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-th-thao .section-live-betting .section-title {
    color: var(--primary-color);
}

.page-th-thao .section-live-betting .section-title::after {
    background-color: var(--text-light);
}

.page-th-thao .section-live-betting p {
    color: var(--text-light);
}

.page-th-thao .live-betting-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-th-thao .feature-item {
    background-color: #2A3C4E; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-th-thao .feature-item:hover {
    transform: translateY(-10px);
    background-color: #3A4A5B;
}

.page-th-thao .feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-th-thao .feature-item h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-th-thao .feature-item p {
    font-size: 1em;
    color: var(--text-light);
}

/* Promotions Section */
.page-th-thao .section-promotions {
    background-color: var(--background-light);
}

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

.page-th-thao .promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid var(--border-color);
}

.page-th-thao .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-th-thao .promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-th-thao .promo-card h3 {
    font-size: 1.6em;
    padding: 20px 25px 0;
    margin-bottom: 10px;
}

.page-th-thao .promo-card h3 .card-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-th-thao .promo-card h3 .card-link:hover {
    color: var(--primary-color);
}

.page-th-thao .promo-card p {
    font-size: 0.95em;
    color: var(--text-dark);
    padding: 0 25px 25px;
}

/* Get Started Section */
.page-th-thao .section-get-started {
    background-color: #F8F8F8;
}

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

.page-th-thao .step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-th-thao .step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-th-thao .step-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-th-thao .step-item h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-th-thao .step-item p {
    font-size: 1em;
    color: var(--text-dark);
}

/* FAQ Section */
.page-th-thao .section-faq {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-th-thao .section-faq .section-title {
    color: var(--primary-color);
}

.page-th-thao .section-faq .section-title::after {
    background-color: var(--text-light);
}

.page-th-thao .faq-list {
    margin-top: 50px;
    text-align: left;
}

.page-th-thao .faq-item {
    background-color: #2A3C4E;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-th-thao .faq-question {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: block;
    position: relative;
    padding-right: 30px;
}

.page-th-thao .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.page-th-thao .faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-th-thao .faq-answer {
    font-size: 1em;
    color: var(--text-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-top: 0;
}

.page-th-thao .faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

/* Blog Section */
.page-th-thao .section-blog {
    background-color: var(--background-light);
}

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

.page-th-thao .blog-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: 1px solid var(--border-color);
}

.page-th-thao .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.page-th-thao .blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-th-thao .blog-info {
    padding: 25px;
}

.page-th-thao .blog-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-th-thao .blog-info h3 .card-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-th-thao .blog-info h3 .card-link:hover {
    color: var(--primary-color);
}

.page-th-thao .blog-info p {
    font-size: 0.9em;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-th-thao .blog-date {
    font-size: 0.85em;
    color: #666;
    display: block;
    margin-bottom: 15px;
}

/* Contact CTA Section */
.page-th-thao .section-contact-cta {
    background: linear-gradient(90deg, var(--primary-color) 0%, #FFC107 100%);
    color: var(--secondary-color);
    padding: 80px 20px;
}

.page-th-thao .section-contact-cta .section-title {
    color: var(--secondary-color);
}

.page-th-thao .section-contact-cta .section-title::after {
    background-color: var(--secondary-color);
}

.page-th-thao .section-contact-cta p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: var(--secondary-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.page-th-thao .section-contact-cta .cta-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    margin: 0 15px 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-th-thao .section-contact-cta .cta-button:hover {
    background: #0F202F;
    color: #FFEA8D;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-th-thao .section-contact-cta .cta-secondary {
    background: #FFFAF0; /* Light cream for secondary */
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-th-thao .section-contact-cta .cta-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-th-thao .hero-content h1 {
        font-size: 3em;
    }
    .page-th-thao .hero-content p {
        font-size: 1.2em;
    }
    .page-th-thao .section-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-th-thao .hero-section {
        padding: 60px 15px;
    }
    .page-th-thao .hero-content h1 {
        font-size: 2.5em;
    }
    .page-th-thao .hero-content p {
        font-size: 1em;
    }
    .page-th-thao .cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-th-thao .section-title {
        font-size: 2em;
    }
    .page-th-thao .section-subtitle {
        font-size: 1em;
    }
    .page-th-thao .intro-grid, 
    .page-th-thao .sports-grid, 
    .page-th-thao .live-betting-features, 
    .page-th-thao .promotion-cards, 
    .page-th-thao .steps-grid, 
    .page-th-thao .blog-grid {
        grid-template-columns: 1fr;
    }
    .page-th-thao .intro-icon, .page-th-thao .feature-icon, .page-th-thao .step-icon {
        width: 80px;
        height: 80px;
    }
    .page-th-thao .intro-item h3, .page-th-thao .feature-item h3, .page-th-thao .step-item h3 {
        font-size: 1.5em;
    }
    .page-th-thao .sport-image, .page-th-thao .promo-image, .page-th-thao .blog-image {
        height: 200px;
    }
    .page-th-thao .faq-question {
        font-size: 1.2em;
    }
    .page-th-thao .section-contact-cta .cta-button {
        margin: 0 5px 15px;
        display: block;
        width: calc(100% - 10px);
    }
}

@media (max-width: 480px) {
    .page-th-thao .hero-section {
        padding: 40px 10px;
    }
    .page-th-thao .hero-content h1 {
        font-size: 2em;
    }
    .page-th-thao .hero-content p {
        font-size: 0.9em;
    }
    .page-th-thao .cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-th-thao .section-title {
        font-size: 1.8em;
    }
    .page-th-thao .intro-item, .page-th-thao .sport-card, .page-th-thao .feature-item, .page-th-thao .promo-card, .page-th-thao .step-item, .page-th-thao .faq-item, .page-th-thao .blog-card {
        padding: 20px;
    }
    .page-th-thao .faq-question {
        font-size: 1.1em;
    }
}