/* style/the-thao.css */
.page-the-thao {
    font-family: Arial, sans-serif;
    color: #333333;
    background-color: #ffffff;
}

/* Hero Section */
.page-the-thao__hero-section {
    padding-top: 10px; /* Small top padding if body handles header offset */
    padding-bottom: 60px;
    background-color: #f0f8ff; /* Light background for hero section */
}

.page-the-thao__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 20px 15px;
}

.page-the-thao__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: #333333;
}

.page-the-thao__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size */
    color: #26A9E0; /* Brand color for title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-the-thao__hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555555;
}

.page-the-thao__hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-the-thao__btn-primary,
.page-the-thao__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.page-the-thao__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-the-thao__btn-primary:hover {
    background-color: #1e8fcb;
    border-color: #1e8fcb;
}

.page-the-thao__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-the-thao__btn-secondary:hover {
    background-color: #e0f2ff;
    color: #1e8fcb;
    border-color: #1e8fcb;
}

.page-the-thao__hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-the-thao__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* General Content Area */
.page-the-thao__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 15px;
    line-height: 1.7;
}

.page-the-thao__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-the-thao__section-title--light {
    color: #FFFFFF;
}

.page-the-thao__text-block {
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: #444444;
}

.page-the-thao__text-block p {
    margin-bottom: 15px;
}

.page-the-thao__text-block a {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-the-thao__text-block a:hover {
    text-decoration: underline;
}

.page-the-thao__image-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-the-thao__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

/* Dark Section */
.page-the-thao__dark-section {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-the-thao__dark-section .page-the-thao__text-block {
    color: #FFFFFF;
}

.page-the-thao__dark-section .page-the-thao__text-block a {
    color: #f0f8ff;
}

/* Bet Types List */
.page-the-thao__bet-types-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-the-thao__bet-types-list li {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 8px;
    font-size: 1.05rem;
    color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

/* Benefits Grid */
.page-the-thao__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-the-thao__benefit-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-the-thao__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.page-the-thao__benefit-title {
    font-size: 1.4rem;
    color: #26A9E0;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-the-thao__benefit-description {
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

/* Guide List */
.page-the-thao__guide-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.page-the-thao__guide-list li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #FFFFFF;
}

.page-the-thao__guide-step-title {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-the-thao__guide-list p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0f8ff;
}

.page-the-thao__guide-list a {
    color: #e0f8ff;
    text-decoration: underline;
}

.page-the-thao__guide-list a:hover {
    text-decoration: none;
}

/* FAQ Section */
.page-the-thao__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-the-thao__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.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: #333333;
    cursor: pointer;
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    list-style: none; /* Hide default marker for details */
}

.page-the-thao__faq-item[open] .page-the-thao__faq-question {
    border-bottom: 1px solid #d0d0d0;
    background-color: #f0f0f0;
}

.page-the-thao__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

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

.page-the-thao__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0;
    transition: transform 0.3s ease;
}

.page-the-thao__faq-item[open] .page-the-thao__faq-toggle {
    transform: rotate(45deg);
}

.page-the-thao__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1rem;
    color: #555555;
    line-height: 1.6;
}

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

    .page-the-thao__hero-content,
    .page-the-thao__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-the-thao__hero-cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .page-the-thao__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }

    .page-the-thao__hero-container {
        padding: 15px !important;
        gap: 20px !important;
    }

    .page-the-thao__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        margin-bottom: 15px !important;
    }

    .page-the-thao__hero-description {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }

    .page-the-thao__hero-cta-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .page-the-thao__btn-primary,
    .page-the-thao__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }

    /* Content Area */
    .page-the-thao__content-area {
        padding: 40px 15px !important;
    }

    .page-the-thao__section-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
        margin-bottom: 30px !important;
    }

    .page-the-thao__text-block {
        font-size: 0.95rem !important;
    }

    /* Images */
    .page-the-thao img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-the-thao__image-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Bet Types List */
    .page-the-thao__bet-types-list {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .page-the-thao__bet-types-list li {
        padding: 18px !important;
        font-size: 1rem !important;
    }

    .page-the-thao__bet-types-list li strong {
        font-size: 1.1rem !important;
    }

    /* Benefits Grid */
    .page-the-thao__benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .page-the-thao__benefit-item {
        padding: 25px !important;
    }

    .page-the-thao__benefit-title {
        font-size: 1.25rem !important;
    }

    .page-the-thao__benefit-description {
        font-size: 0.95rem !important;
    }

    /* Guide List */
    .page-the-thao__guide-list li {
        padding: 20px !important;
        margin-bottom: 15px !important;
    }

    .page-the-thao__guide-step-title {
        font-size: 1.2rem !important;
    }

    .page-the-thao__guide-list p {
        font-size: 0.95rem !important;
    }

    /* FAQ Section */
    .page-the-thao__faq-question {
        padding: 15px 20px !important;
        font-size: 1.05rem !important;
    }

    .page-the-thao__faq-answer {
        padding: 12px 20px 15px 20px !important;
        font-size: 0.95rem !important;
    }

    .page-the-thao__faq-toggle {
        font-size: 1.3rem !important;
    }
}