/* style/th-thao.css */
:root {
    --primary-color: #0A192F;
    --secondary-color: #E0B400;
    --text-light: #F0F2F5;
    --text-dark: #333333;
    --background-dark: #1A2A40;
    --background-light: #FFFFFF;
    --accent-color: #FFD700; /* A brighter gold for highlights */
    --border-color: #3A4A60;
}

.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-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
    position: relative;
    font-weight: bold;
}

.page-th-thao .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-th-thao .section-description {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* Hero Banner */
.page-th-thao .hero-banner {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
}

.page-th-thao .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-th-thao .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-th-thao .hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 800px;
    padding: 20px;
}

.page-th-thao .hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-th-thao .hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-th-thao .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.page-th-thao .cta-button:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-th-thao .intro-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-th-thao .intro-section p {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
}

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

.page-th-thao .intro-item {
    text-align: center;
    padding: 30px;
    background-color: #F8F8F8;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao .intro-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-th-thao .intro-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

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

.page-th-thao .intro-icon {
    width: 100px; /* Min size 200x200, so this icon is for visual design, not actual image. Will be replaced by larger images. */
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
}

/* Sports Offerings Section */
.page-th-thao .sports-offerings-section {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

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

.page-th-thao .sports-offerings-section .section-title::after {
    background-color: var(--accent-color);
}

.page-th-thao .sports-offerings-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-th-thao .sport-category {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background-color: var(--primary-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-th-thao .sport-category.reverse {
    flex-direction: row-reverse;
}

.page-th-thao .sport-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-th-thao .sport-category-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-th-thao .sport-content {
    flex: 2;
}

.page-th-thao .sport-content h3 {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-th-thao .sport-content p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--text-light);
}

.page-th-thao .sport-content ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-th-thao .sport-content li {
    margin-bottom: 8px;
    color: var(--text-light);
}

.page-th-thao .sports-offerings-section .section-description a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.page-th-thao .sports-offerings-section .section-description a:hover {
    text-decoration: underline;
}

/* Advantages Section */
.page-th-thao .advantages-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

.page-th-thao .advantage-item {
    text-align: center;
    padding: 30px;
    background-color: #F8F8F8;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-th-thao .advantage-item h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

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

.page-th-thao .advantage-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--secondary-color);
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Guide Section */
.page-th-thao .guide-section {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

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

.page-th-thao .guide-section .section-title::after {
    background-color: var(--accent-color);
}

.page-th-thao .guide-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-th-thao .guide-list {
    list-style: none;
    counter-reset: guide-counter;
    padding: 0;
}

.page-th-thao .guide-list li {
    position: relative;
    background-color: var(--primary-color);
    padding: 30px 40px 30px 90px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--secondary-color);
}

.page-th-thao .guide-list li::before {
    counter-increment: guide-counter;
    content: counter(guide-counter);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
}

.page-th-thao .guide-list li h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-th-thao .guide-list li p {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: left;
}

.page-th-thao .guide-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-th-thao .guide-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.page-th-thao .promotions-section p {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
}

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

.page-th-thao .promo-card {
    background-color: #F8F8F8;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-th-thao .promo-card h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin: 20px 15px 10px;
}

.page-th-thao .promo-card p {
    font-size: 1em;
    color: var(--text-dark);
    padding: 0 15px 20px;
    text-align: center;
}

.page-th-thao .promo-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.page-th-thao .promo-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Tips Section */
.page-th-thao .tips-section {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

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

.page-th-thao .tips-section .section-title::after {
    background-color: var(--accent-color);
}

.page-th-thao .tips-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-light);
}

.page-th-thao .tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-th-thao .tips-list li {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-left: 5px solid var(--secondary-color);
}

.page-th-thao .tips-list li h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-th-thao .tips-list li p {
    font-size: 1em;
    color: var(--text-light);
    text-align: left;
    margin-bottom: 0;
}

/* Support Section */
.page-th-thao .support-section {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-th-thao .support-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-th-thao .support-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.page-th-thao .support-item p {
    font-size: 1em;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.page-th-thao .support-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--secondary-color);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-th-thao .support-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-th-thao .support-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* FAQ Section */
.page-th-thao .faq-section {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

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

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

.page-th-thao .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-th-thao .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-th-thao .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-th-thao .faq-question:hover {
    background-color: #1F3652;
}

.page-th-thao .faq-question h3 {
    font-size: 1.25em;
    margin: 0;
    color: var(--text-light);
}

.page-th-thao .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.page-th-thao .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.page-th-thao .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: var(--background-dark);
    color: var(--text-light);
    padding: 0 25px;
    border-radius: 0 0 8px 8px;
}

.page-th-thao .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
    border: 1px solid var(--border-color);
    border-top: none;
}

.page-th-thao .faq-answer p {
    margin: 0;
    font-size: 1em;
    color: var(--text-light);
}

.page-th-thao .faq-answer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-th-thao .faq-answer a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-th-thao .hero-title {
        font-size: 3em;
    }
    .page-th-thao .hero-description {
        font-size: 1.2em;
    }
    .page-th-thao .sport-category {
        flex-direction: column;
        text-align: center;
    }
    .page-th-thao .sport-category.reverse {
        flex-direction: column;
    }
    .page-th-thao .sport-content {
        order: 2; /* Ensure content is below image on smaller screens */
    }
    .page-th-thao .sport-image-wrapper {
        order: 1;
    }
    .page-th-thao .sport-content h3 {
        margin-top: 30px;
    }
    .page-th-thao .support-content {
        gap: 20px;
    }
    .page-th-thao .support-item {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-th-thao .hero-banner {
        height: 400px;
    }
    .page-th-thao .hero-title {
        font-size: 2.5em;
    }
    .page-th-thao .hero-description {
        font-size: 1.1em;
    }
    .page-th-thao .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-th-thao .section-title {
        font-size: 2em;
    }
    .page-th-thao .intro-grid, .page-th-thao .advantages-grid, .page-th-thao .promo-grid, .page-th-thao .tips-list {
        grid-template-columns: 1fr;
    }
    .page-th-thao .guide-list li {
        padding: 25px 30px 25px 80px;
    }
    .page-th-thao .guide-list li::before {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        left: 15px;
    }
    .page-th-thao .guide-list li h3 {
        font-size: 1.5em;
    }
    .page-th-thao .faq-question {
        padding: 15px 20px;
    }
    .page-th-thao .faq-question h3 {
        font-size: 1.1em;
    }
    .page-th-thao .faq-toggle {
        font-size: 1.5em;
    }
    .page-th-thao .faq-answer {
        padding: 0 20px;
    }
    .page-th-thao .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-th-thao .hero-banner {
        height: 350px;
    }
    .page-th-thao .hero-title {
        font-size: 2em;
    }
    .page-th-thao .hero-description {
        font-size: 0.9em;
    }
    .page-th-thao .section-title {
        font-size: 1.8em;
    }
    .page-th-thao .sport-content h3 {
        font-size: 1.6em;
    }
    .page-th-thao .advantage-item h3, .page-th-thao .promo-card h3 {
        font-size: 1.4em;
    }
    .page-th-thao .support-item h3 {
        font-size: 1.5em;
    }
    .page-th-thao .intro-icon, .page-th-thao .advantage-icon, .page-th-thao .support-icon {
        width: 80px;
        height: 80px;
    }
}