/* style/th-thao.css */

/* Global Reset & Base Styles for this page only */
.page-th-thao {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E5E5E5; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
}

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

.page-th-thao-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Accent gold for titles */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-th-thao-section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #B0B0B0;
}

.page-th-thao-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-th-thao-primary-button {
    background-color: #FFD700; /* Accent gold */
    color: #1A202C; /* Dark text for accent background */
}

.page-th-thao-primary-button:hover {
    background-color: #E0B500; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

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

.page-th-thao-secondary-button:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-th-thao-small-button {
    padding: 10px 20px;
    font-size: 0.95em;
}

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

.page-th-thao-mt-40 {
    margin-top: 40px;
}

.page-th-thao-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 50px 0;
}

.page-th-thao-image-wrapper {
    text-align: center;
}

.page-th-thao-image-full {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.page-th-thao-hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark gradient */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-th-thao-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(26, 32, 44, 0) 70%);
    animation: page-th-thao-pulse 10s infinite alternate;
    z-index: 0;
}

@keyframes page-th-thao-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-th-thao-hero-section .page-th-thao-container {
    position: relative;
    z-index: 1;
}

.page-th-thao-main-title {
    font-size: 4em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-th-thao-hero-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #E5E5E5;
}

/* About Section */
.page-th-thao-about-section {
    background-color: #202B3B;
    padding: 80px 0;
}

.page-th-thao-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-th-thao-feature-list li {
    background-color: #2A364B;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-th-thao-feature-title {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* Sports Categories Section */
.page-th-thao-sports-categories {
    padding: 80px 0;
    background-color: #1A202C;
}

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

.page-th-thao-category-card {
    background-color: #2A364B;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-th-thao-category-card:hover {
    transform: translateY(-8px);
    background-color: #3B4A62;
}

.page-th-thao-category-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #FFD700; /* Assuming SVG icons, or for placeholder */
}

.page-th-thao-card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-th-thao-category-card p {
    color: #B0B0B0;
    font-size: 0.95em;
}

/* Live Betting Section */
.page-th-thao-live-betting-section {
    background-color: #202B3B;
    padding: 80px 0;
}

/* Promotions Section */
.page-th-thao-promotions-section {
    background-color: #1A202C;
    padding: 80px 0;
}

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

.page-th-thao-promotion-card {
    background-color: #2A364B;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-th-thao-promotion-card:hover {
    transform: translateY(-8px);
}

.page-th-thao-promotion-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-th-thao-promotion-card .page-th-thao-card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-th-thao-promotion-card p {
    color: #B0B0B0;
    margin-bottom: 25px;
}

/* How to Play Section */
.page-th-thao-how-to-play-section {
    background-color: #202B3B;
    padding: 80px 0;
}

.page-th-thao-step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-th-thao-step-list li {
    background-color: #2A364B;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.page-th-thao-step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #1A202C;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 4px solid #1A202C;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.page-th-thao-step-title {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-th-thao-step-list p {
    color: #B0B0B0;
    font-size: 1em;
}

.page-th-thao-step-list a {
    color: #FFD700;
    text-decoration: underline;
}

.page-th-thao-step-list a:hover {
    color: #E0B500;
}

/* App Section */
.page-th-thao-app-section {
    background-color: #1A202C;
    padding: 80px 0;
}

/* FAQ Section */
.page-th-thao-faq-section {
    background-color: #202B3B;
    padding: 80px 0;
}

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

.page-th-thao-faq-question {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer;
    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;
    transition: transform 0.3s ease;
}

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

.page-th-thao-faq-answer {
    color: #B0B0B0;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

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

/* Call to Action Section */
.page-th-thao-cta-section {
    background: linear-gradient(45deg, #1A202C, #2A364B);
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-th-thao-cta-title {
    color: #FFD700;
    font-size: 3em;
    margin-bottom: 20px;
}

.page-th-thao-cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E5E5E5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-th-thao-main-title {
        font-size: 3em;
    }
    .page-th-thao-section-title {
        font-size: 2.2em;
    }
    .page-th-thao-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .page-th-thao-reverse-on-mobile {
        grid-template-areas: "image" "text";
    }
    .page-th-thao-reverse-on-mobile .page-th-thao-image-wrapper { grid-area: image; }
    .page-th-thao-reverse-on-mobile .page-th-thao-text-content { grid-area: text; }
}

@media (max-width: 768px) {
    .page-th-thao-hero-section {
        padding: 80px 0;
    }
    .page-th-thao-main-title {
        font-size: 2.5em;
    }
    .page-th-thao-hero-description {
        font-size: 1.1em;
    }
    .page-th-thao-section-title {
        font-size: 1.8em;
    }
    .page-th-thao-section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-th-thao-button {
        padding: 12px 24px;
        font-size: 1em;
    }
    .page-th-thao-category-grid, .page-th-thao-promotion-grid, .page-th-thao-step-list {
        grid-template-columns: 1fr;
    }
    .page-th-thao-cta-title {
        font-size: 2.2em;
    }
    .page-th-thao-cta-description {
        font-size: 1em;
    }
    .page-th-thao-faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-th-thao-hero-section {
        padding: 60px 0;
    }
    .page-th-thao-main-title {
        font-size: 2em;
    }
    .page-th-thao-section-title {
        font-size: 1.6em;
    }
    .page-th-thao-button {
        width: 100%;
        box-sizing: border-box;
    }
    .page-th-thao-feature-title, .page-th-thao-card-title, .page-th-thao-step-title {
        font-size: 1.3em;
    }
}