/* style/th-thao.css */
.page-th-thao {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

.page-th-thao__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-top: 40px;
}

.page-th-thao__section-subtitle {
    font-size: 1.2em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 50px;
}

/* Buttons */
.page-th-thao__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.page-th-thao__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1a1a1a; /* Dark text for gold button */
    border: 2px solid #FFD700;
}

.page-th-thao__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    color: #000000;
    transform: translateY(-2px);
}

.page-th-thao__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

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

.page-th-thao__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    background-color: #8B0000; /* Dark Red */
    color: #ffffff;
    border: 2px solid #8B0000;
    margin-top: 15px;
}

.page-th-thao__btn--small:hover {
    background-color: #a00000; /* Slightly lighter red */
    border-color: #a00000;
    transform: translateY(-2px);
}

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

.page-th-thao__inline-link {
    color: #FFD700; /* Gold for inline links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-th-thao__inline-link:hover {
    color: #e6c200; /* Slightly darker gold on hover */
    text-decoration: underline;
}

/* Hero Section */
.page-th-thao__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-th-thao__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-th-thao__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-th-thao__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-th-thao__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtler background image */
    z-index: 0;
}

.page-th-thao__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Why Choose Section */
.page-th-thao__why-choose {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-th-thao__feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-th-thao__feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-th-thao__feature-item p {
    color: #cccccc;
    font-size: 1em;
}

/* Sports Categories Section */
.page-th-thao__sports-categories {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-th-thao__category-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-th-thao__category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #8B0000; /* Dark Red border */
}

.page-th-thao__category-card h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-th-thao__category-card p {
    color: #cccccc;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-th-thao__category-card .page-th-thao__btn--small {
    margin: 0 15px 20px;
    width: calc(100% - 30px);
}

/* Live Betting Section */
.page-th-thao__live-betting {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-th-thao__live-betting-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-th-thao__text-block,
.page-th-thao__image-block {
    flex: 1;
    min-width: 300px;
}

.page-th-thao__text-block p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-th-thao__text-block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-th-thao__text-block ul li {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M9 20.42L2.79 14.21L5.62 11.38L9 14.77L18.38 5.38L21.21 8.21L9 20.42Z'/%3E%3C/svg%3E") no-repeat left center;
    background-size: 16px;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #cccccc;
}

.text-gold {
    color: #FFD700;
    font-weight: bold;
}

.page-th-thao__image-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Promotions Section */
.page-th-thao__promotions {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-th-thao__promo-card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-th-thao__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-th-thao__promo-card img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.page-th-thao__promo-card h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-th-thao__promo-card p {
    color: #cccccc;
    font-size: 0.95em;
    flex-grow: 1;
    margin-bottom: 20px;
}

/* Get Started Section */
.page-th-thao__get-started {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.page-th-thao__step-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    text-align: left; /* Align text left within step item */
}

.page-th-thao__step-item:hover {
    transform: translateY(-5px);
}

.page-th-thao__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFD700; /* Gold circle */
    color: #1a1a1a; /* Dark text */
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.page-th-thao__step-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-th-thao__step-item p {
    color: #cccccc;
    font-size: 0.95em;
}

.page-th-thao__cta-bottom {
    margin-top: 50px;
}

/* FAQ Section */
.page-th-thao__faq {
    padding: 60px 20px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-th-thao__faq-item {
    background-color: #2a2a2a;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-th-thao__faq-question {
    color: #FFD700;
    font-size: 1.3em;
    padding: 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8B0000; /* Dark Red background for questions */
    transition: background-color 0.3s ease;
}

.page-th-thao__faq-question:hover {
    background-color: #a00000; /* Slightly lighter red on hover */
}

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

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

.page-th-thao__faq-answer {
    color: #e0e0e0;
    padding: 0 20px 20px;
    margin: 0;
    display: none; /* Hidden by default */
    font-size: 1em;
    line-height: 1.7;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-th-thao__hero-title {
        font-size: 2.5em;
    }

    .page-th-thao__hero-description {
        font-size: 1.1em;
    }

    .page-th-thao__section-title {
        font-size: 2em;
    }

    .page-th-thao__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-th-thao__btn--secondary {
        margin-left: 0;
    }

    .page-th-thao__live-betting-content {
        flex-direction: column;
    }

    .page-th-thao__text-block,
    .page-th-thao__image-block {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-th-thao__hero-title {
        font-size: 2em;
    }

    .page-th-thao__hero-description {
        font-size: 1em;
    }

    .page-th-thao__section-title {
        font-size: 1.8em;
    }

    .page-th-thao__btn {
        width: 100%;
        box-sizing: border-box;
    }
}