/* style/th-thao.css */
.page-th-thao {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: #1a1a1a;
    line-height: 1.6;
}

.page-th-thao__hero-section {
    position: relative;
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Adjusted gradient for better contrast */
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 500px;
}

.page-th-thao__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract_sports_pattern,dark_gold,red]'); /* Abstract pattern for hero bg */
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-th-thao__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-th-thao__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-th-thao__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-th-thao__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-th-thao__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-th-thao__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-th-thao__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-th-thao__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-3px);
}

.page-th-thao__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-th-thao__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-th-thao__hero-image-wrapper {
    display: none; /* Hidden on smaller screens */
}

.page-th-thao__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-th-thao__features-section, .page-th-thao__sports-categories, .page-th-thao__promotions-section, .page-th-thao__guide-section, .page-th-thao__app-download-section, .page-th-thao__faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-th-thao__feature-item, .page-th-thao__category-card, .page-th-thao__promotion-card, .page-th-thao__step-item {
    background-color: #333333;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-th-thao__feature-item:hover, .page-th-thao__category-card:hover, .page-th-thao__promotion-card:hover, .page-th-thao__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-th-thao__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-th-thao__feature-title, .page-th-thao__category-title, .page-th-thao__promotion-title, .page-th-thao__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-th-thao__feature-text, .page-th-thao__category-description, .page-th-thao__promotion-description, .page-th-thao__step-text {
    font-size: 1em;
    color: #cccccc;
    margin-bottom: 20px;
}

.page-th-thao__category-image, .page-th-thao__promotion-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

.page-th-thao__promotions-intro {
    text-align: center;
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 50px;
}

.page-th-thao__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #444;
}

.page-th-thao__cta-text {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-th-thao__guide-section {
    background-color: #1f1f1f;
}

.page-th-thao__step-item {
    background-color: #333333;
    border: 1px solid #444;
    position: relative;
    padding-top: 60px; /* Space for number */
}

.page-th-thao__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8B0000;
    color: #FFD700;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    border: 2px solid #FFD700;
}

.page-th-thao__app-download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(90deg, #8B0000, #4d0000); /* Darker red gradient */
    padding: 60px 20px;
}

.page-th-thao__app-content {
    max-width: 800px;
    margin-bottom: 40px;
}

.page-th-thao__app-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-th-thao__app-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-th-thao__app-image-wrapper {
    max-width: 400px;
}

.page-th-thao__app-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-th-thao__faq-section {
    background-color: #1f1f1f;
}

.page-th-thao__faq-list {
    margin-top: 40px;
}

.page-th-thao__faq-item {
    background-color: #333333;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.page-th-thao__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-th-thao__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-th-thao__faq-question.active::after {
    transform: rotate(45deg);
}

.page-th-thao__faq-answer {
    font-size: 1em;
    color: #cccccc;
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #444;
}

.page-th-thao__faq-answer.active {
    display: block;
}

.page-th-thao__keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-th-thao__hero-title {
        font-size: 3em;
    }
    .page-th-thao__hero-description {
        font-size: 1.1em;
    }
    .page-th-thao__section-title {
        font-size: 2.2em;
    }
    .page-th-thao__feature-grid, .page-th-thao__category-grid, .page-th-thao__promotion-grid, .page-th-thao__guide-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-th-thao__app-download-section {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-th-thao__hero-section {
        padding: 80px 0;
    }
    .page-th-thao__hero-title {
        font-size: 2.5em;
    }
    .page-th-thao__hero-description {
        font-size: 1em;
    }
    .page-th-thao__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-th-thao__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-th-thao__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-th-thao__feature-item, .page-th-thao__category-card, .page-th-thao__promotion-card, .page-th-thao__step-item {
        padding: 20px;
    }
    .page-th-thao__feature-title, .page-th-thao__category-title, .page-th-thao__promotion-title, .page-th-thao__step-title {
        font-size: 1.5em;
    }
    .page-th-thao__app-download-section {
        padding: 40px 15px;
    }
    .page-th-thao__app-image-wrapper {
        max-width: 300px;
    }
    .page-th-thao__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-th-thao__hero-title {
        font-size: 2em;
    }
    .page-th-thao__section-title {
        font-size: 1.5em;
    }
    .page-th-thao__feature-grid, .page-th-thao__category-grid, .page-th-thao__promotion-grid, .page-th-thao__guide-steps {
        grid-template-columns: 1fr;
    }
    .page-th-thao__btn {
        width: 100%;
    }
    .page-th-thao__app-actions {
        flex-direction: column;
    }
}