/* style/the-thao-sports-types.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Dark Blue */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --background-light: #f8f8f8;
    --background-dark: #000066; /* Slightly lighter dark blue for variety */
    --border-color: #e0e0e0;
}

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

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

.page-the-thao-sports-types h1, .page-the-thao-sports-types h2, .page-the-thao-sports-types h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-the-thao-sports-types h1 {
    font-size: 2.8em;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-the-thao-sports-types h2 {
    font-size: 2.2em;
    color: var(--secondary-color);
    padding-top: 40px;
}

.page-the-thao-sports-types h3 {
    font-size: 1.6em;
    color: var(--secondary-color);
    text-align: left;
    margin-bottom: 15px;
}

.page-the-thao-sports-types p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-the-thao-sports-types .cta-button {
    display: inline-block;
    padding: 15px 40px;
    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 4px 10px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--primary-color);
}

.page-the-thao-sports-types .cta-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.page-the-thao-sports-types .cta-small-button {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.page-the-thao-sports-types .cta-small-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.page-the-thao-sports-types .text-center {
    text-align: center;
}

/* Hero Section Specific Styles */
.page-the-thao-sports-types .hero-sports-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--secondary-color);
    overflow: hidden;
}

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

.page-the-thao-sports-types .hero-sports-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
}

.page-the-thao-sports-types .hero-sports-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-light);
}

.page-the-thao-sports-types .hero-sports-content p {
    color: var(--text-light);
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Section Overview */
.page-the-thao-sports-types .section-overview {
    background-color: var(--background-light);
    padding: 60px 0;
    text-align: center;
}

.page-the-thao-sports-types .overview-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-the-thao-sports-types .feature-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-the-thao-sports-types .feature-item h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
    text-align: center;
}

.page-the-thao-sports-types .feature-item p {
    font-size: 1em;
    color: var(--text-dark);
    text-align: center;
}

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

.page-the-thao-sports-types .section-sports-types h2 {
    color: var(--primary-color);
}

.page-the-thao-sports-types .section-sports-types p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

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

.page-the-thao-sports-types .sport-card {
    background-color: #1a1a4a; /* Darker blue for cards */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-the-thao-sports-types .sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-the-thao-sports-types .sport-card .sport-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
}

.page-the-thao-sports-types .sport-card h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin: 20px 15px 10px 15px;
    text-align: center;
}

.page-the-thao-sports-types .sport-card p {
    font-size: 1em;
    color: #cccccc;
    padding: 0 15px 20px 15px;
    text-align: justify;
    flex-grow: 1;
}

.page-the-thao-sports-types .sport-card .cta-small-button {
    margin-bottom: 20px;
}

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

.page-the-thao-sports-types .section-advantages h2 {
    color: var(--secondary-color);
}

.page-the-thao-sports-types .section-advantages p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-the-thao-sports-types .advantage-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-the-thao-sports-types .advantage-list li {
    background-color: #ffffff;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-sports-types .advantage-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.page-the-thao-sports-types .advantage-list li h3 {
    color: var(--secondary-color);
    font-size: 1.3em;
    margin-bottom: 10px;
    text-align: left;
}

.page-the-thao-sports-types .advantage-list li p {
    font-size: 1em;
    color: var(--text-dark);
    text-align: justify;
}

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

.page-the-thao-sports-types .section-guide h2 {
    color: var(--primary-color);
}

.page-the-thao-sports-types .section-guide p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

.page-the-thao-sports-types .guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-the-thao-sports-types .step-item {
    background-color: #1a1a4a;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao-sports-types .step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-the-thao-sports-types .step-item .step-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    background-color: rgba(255, 215, 0, 0.1);
}

.page-the-thao-sports-types .step-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
    text-align: center;
}

.page-the-thao-sports-types .step-item p {
    font-size: 1em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 20px;
}

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

.page-the-thao-sports-types .section-faq h2 {
    color: var(--secondary-color);
    margin-bottom: 40px;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15em;
    color: var(--secondary-color);
    text-align: left;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 20px;
    background: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-answer p {
    margin: 0;
    font-size: 1em;
    color: var(--text-dark);
    text-align: justify;
}

/* Conclusion Section */
.page-the-thao-sports-types .section-conclusion {
    background-color: var(--secondary-color);
    padding: 80px 0;
    text-align: center;
    color: var(--text-light);
}

.page-the-thao-sports-types .section-conclusion h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-the-thao-sports-types .section-conclusion p {
    color: var(--text-light);
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-the-thao-sports-types h1 {
        font-size: 2.2em;
    }
    .page-the-thao-sports-types h2 {
        font-size: 1.8em;
    }
    .page-the-thao-sports-types h3 {
        font-size: 1.4em;
    }
    .page-the-thao-sports-types p {
        font-size: 1em;
    }
    .page-the-thao-sports-types .hero-sports-image {
        max-height: 400px;
    }
    .page-the-thao-sports-types .overview-features, .page-the-thao-sports-types .sports-grid, .page-the-thao-sports-types .advantage-list, .page-the-thao-sports-types .guide-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-the-thao-sports-types .container {
        padding: 15px;
    }
    .page-the-thao-sports-types h1 {
        font-size: 1.8em;
    }
    .page-the-thao-sports-types h2 {
        font-size: 1.6em;
        padding-top: 30px;
    }
    .page-the-thao-sports-types h3 {
        font-size: 1.2em;
    }
    .page-the-thao-sports-types .hero-sports-section {
        padding: 40px 15px;
    }
    .page-the-thao-sports-types .hero-sports-image {
        max-height: 300px;
        margin-bottom: 30px;
    }
    .page-the-thao-sports-types .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-the-thao-sports-types .feature-item, .page-the-thao-sports-types .sport-card, .page-the-thao-sports-types .advantage-list li, .page-the-thao-sports-types .step-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-question {
        padding: 15px;
    }
    .faq-answer {
        padding: 0 15px;
    }
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-the-thao-sports-types h1 {
        font-size: 1.5em;
    }
    .page-the-thao-sports-types .hero-sports-image {
        max-height: 250px;
    }
    .page-the-thao-sports-types .overview-features {
        gap: 20px;
    }
    .page-the-thao-sports-types .sports-grid {
        gap: 20px;
    }
    .page-the-thao-sports-types .guide-steps {
        gap: 20px;
    }
}