:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #8B0000; /* Dark Red */
    --dark-bg: #1a1a1a; /* Very dark grey for background */
    --light-text: #ffffff; /* White for text on dark bg */
    --dark-text: #333333; /* Dark grey for text on light bg */
    --medium-grey: #f0f0f0;
    --border-color: #e0e0e0;
}

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

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

.page-the-thao-section {
    padding: 60px 0;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.page-the-thao-section:nth-of-type(odd) {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.page-the-thao-section:nth-of-type(even) {
    background-color: #ffffff;
    color: var(--dark-text);
}

.page-the-thao-hero-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #330000 100%);
    color: var(--light-text);
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-the-thao-main-heading {
    font-size: 3.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-the-thao-hero-text {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #f0f0f0;
}

.page-the-thao-hero-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

.page-the-thao-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-text);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-the-thao-cta-button:hover {
    background-color: #FFC107;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.page-the-thao h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-the-thao-section:nth-of-type(even) h2 {
    color: var(--secondary-color);
}

.page-the-thao h3 {
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-the-thao-section:nth-of-type(even) h3 {
    color: var(--secondary-color);
}

.page-the-thao p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-the-thao a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-the-thao-section:nth-of-type(even) a {
    color: var(--secondary-color);
}

.page-the-thao a:hover {
    text-decoration: underline;
    color: #FFC107;
}

.page-the-thao ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-the-thao li {
    margin-bottom: 10px;
}

.page-the-thao img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    object-fit: cover;
}

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

.page-the-thao-feature-item, .page-the-thao-promo-item, .page-the-thao-step-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-the-thao-section:nth-of-type(even) .page-the-thao-feature-item,
.page-the-thao-section:nth-of-type(even) .page-the-thao-promo-item,
.page-the-thao-section:nth-of-type(even) .page-the-thao-step-card {
    background-color: #fcfcfc;
    border: 1px solid var(--border-color);
}

.page-the-thao-feature-item:hover, .page-the-thao-promo-item:hover, .page-the-thao-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.page-the-thao-feature-item img, .page-the-thao-promo-item img, .page-the-thao-step-card img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: contain; /* Changed to contain for icons/logos */
    margin-bottom: 20px;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

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

.page-the-thao-small-button:hover {
    background-color: #A00000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-the-thao-promo-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    font-size: 0.95em;
    color: #aaa;
}

.page-the-thao-section:nth-of-type(even) .page-the-thao-promo-note {
    color: #666;
}

/* FAQ Section Styling */
.page-the-thao-faq-section {
    background-color: var(--medium-grey);
    color: var(--dark-text);
}

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

.faq-list {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

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

.faq-question h3 {
    margin: 0;
    font-size: 1.2em;
    color: var(--dark-text);
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #fafafa;
    color: var(--dark-text);
}

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

.faq-answer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-the-thao-main-heading {
        font-size: 2.5em;
    }
    .page-the-thao h2 {
        font-size: 2em;
    }
    .page-the-thao h3 {
        font-size: 1.5em;
    }
    .page-the-thao-cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-the-thao-hero-banner {
        padding: 60px 15px;
    }
    .page-the-thao-main-heading {
        font-size: 2em;
    }
    .page-the-thao-hero-text {
        font-size: 1em;
    }
    .page-the-thao-section {
        padding: 40px 0;
    }
    .page-the-thao h2 {
        font-size: 1.8em;
    }
    .page-the-thao h3 {
        font-size: 1.3em;
    }
    .page-the-thao-features, .page-the-thao-promo-grid, .page-the-thao-steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-the-thao-feature-item, .page-the-thao-promo-item, .page-the-thao-step-card {
        padding: 20px;
    }
    .faq-question {
        padding: 15px 20px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-the-thao-main-heading {
        font-size: 1.8em;
    }
    .page-the-thao-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-the-thao h2 {
        font-size: 1.5em;
    }
    .page-the-thao h3 {
        font-size: 1.2em;
    }
    .page-the-thao-container {
        padding: 10px;
    }
}