.page-the-thao {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-the-thao__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

.page-the-thao__hero-intro-section {
    padding-top: 10px; /* Rely on body for header offset, use small top padding */
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-the-thao__hero-intro-section .page-the-thao__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-the-thao__text-content {
    flex: 1 1 50%;
    min-width: 300px;
    padding-right: 20px;
}

.page-the-thao__image-wrapper {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.page-the-thao__main-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-the-thao__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFD36B; /* Glow color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-the-thao__intro-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #FFF6D6;
}

.page-the-thao__cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary,
.page-the-thao__btn-tertiary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-the-thao__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button */
    border: none;
}

.page-the-thao__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-the-thao__btn-secondary {
    background: #111111; /* Card BG */
    color: #FFD36B; /* Glow color */
    border: 2px solid #3A2A12; /* Border color */
}

.page-the-thao__btn-secondary:hover {
    background: #FFD36B;
    color: #111111;
    border-color: #FFD36B;
    transform: translateY(-2px);
}

.page-the-thao__btn-tertiary {
    background: #3A2A12; /* Border color */
    color: #FFF6D6; /* Text Main */
    border: none;
    font-size: 0.9em;
    padding: 8px 15px;
}

.page-the-thao__btn-tertiary:hover {
    background: #F2C14E;
    color: #111111;
}

.page-the-thao__section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-the-thao__section-title {
    font-size: 2.2rem;
    color: #F2C14E; /* Main color */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-the-thao__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD36B;
    border-radius: 2px;
}

.page-the-thao__about-sports p,
.page-the-thao__how-to-bet p,
.page-the-thao__betting-tips p,
.page-the-thao__promotions p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #FFF6D6;
}

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

.page-the-thao__card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #FFF6D6;
}

.page-the-thao__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-the-thao__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
    object-fit: cover;
}

.page-the-thao__card-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Main color */
    margin-bottom: 10px;
}

.page-the-thao__sport-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.page-the-thao__sport-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #FFF6D6;
    background-color: #111111;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #3A2A12;
}

.page-the-thao__sport-list li img {
    width: 200px; /* Minimum size requirement */
    height: 200px;
    margin-right: 20px;
    border-radius: 8px; 
    object-fit: cover;
    border: 2px solid #F2C14E;
    min-width: 200px;
}

.page-the-thao__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-the-thao__guide-list li {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #FFF6D6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-the-thao__guide-list li strong {
    color: #F2C14E;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 10px;
}

.page-the-thao__cta-center {
    text-align: center;
    margin-top: 40px;
}

.page-the-thao__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-the-thao__tip-list li {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #FFF6D6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 45px;
}

.page-the-thao__tip-list li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD36B;
    font-weight: bold;
    font-size: 1.3rem;
}

.page-the-thao__tip-list li strong {
    color: #F2C14E;
}

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

.page-the-thao__promo-card {
    text-align: left;
    padding: 0; /* Remove padding for image to fill card top */
    overflow: hidden;
}

.page-the-thao__promo-card .page-the-thao__card-image {
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.page-the-thao__promo-card .page-the-thao__card-title,
.page-the-thao__promo-card p {
    padding: 0 25px;
}

.page-the-thao__promo-card .page-the-thao__card-title {
    margin-top: 20px;
}

.page-the-thao__promo-card p {
    margin-bottom: 20px;
}

.page-the-thao__promo-card .page-the-thao__btn-tertiary {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
}

.page-the-thao__faq-list {
    margin-top: 30px;
}

.page-the-thao__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #FFF6D6;
}

.page-the-thao__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: #F2C14E; /* Main color */
    cursor: pointer;
    user-select: none;
    background-color: #111111;
    border-bottom: 1px solid transparent;
}

.page-the-thao__faq-item[open] .page-the-thao__faq-question {
    border-bottom-color: #3A2A12;
}

.page-the-thao__faq-qtext {
    flex-grow: 1;
}

.page-the-thao__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #FFD36B; /* Glow color */
}

.page-the-thao__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #FFF6D6;
}

/* Ensure contrast for text */
.page-the-thao p, .page-the-thao li, .page-the-thao__faq-answer p {
    color: #FFF6D6; /* Text Main */
}

.page-the-thao__main-title,
.page-the-thao__section-title,
.page-the-thao__card-title,
.page-the-thao__guide-list li strong,
.page-the-thao__tip-list li strong,
.page-the-thao__faq-question {
    color: #F2C14E; /* Main color for titles */
}

.page-the-thao__main-title,
.page-the-thao__faq-toggle {
    color: #FFD36B; /* Glow color for main title and toggle */
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .page-the-thao__hero-intro-section .page-the-thao__container {
        flex-direction: column;
        text-align: center;
    }

    .page-the-thao__text-content {
        padding-right: 0;
    }

    .page-the-thao__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .page-the-thao__cta-group {
        justify-content: center;
    }

    .page-the-thao__sport-list {
        grid-template-columns: 1fr;
    }

    .page-the-thao__sport-list li {
        flex-direction: column;
        text-align: center;
    }

    .page-the-thao__sport-list li img {
        margin-right: 0;
        margin-bottom: 15px;
    }
}