/* style/the-thao-ca-cuoc-bong-da.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --accent-color-login: #EA7C07;
}

.page-the-thao-ca-cuoc-bong-da {
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--secondary-color); /* Default white background */
}

.page-the-thao-ca-cuoc-bong-da__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Hero Section */
.page-the-thao-ca-cuoc-bong-da__hero-section {
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
    padding-bottom: 60px;
    background-color: var(--secondary-color);
}

.page-the-thao-ca-cuoc-bong-da__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-the-thao-ca-cuoc-bong-da__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.page-the-thao-ca-cuoc-bong-da__main-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-the-thao-ca-cuoc-bong-da__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.page-the-thao-ca-cuoc-bong-da__btn-primary,
.page-the-thao-ca-cuoc-bong-da__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-the-thao-ca-cuoc-bong-da__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-the-thao-ca-cuoc-bong-da__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-the-thao-ca-cuoc-bong-da__hero-image-wrapper {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.page-the-thao-ca-cuoc-bong-da__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* General Section Styling */
.page-the-thao-ca-cuoc-bong-da__benefits-section,
.page-the-thao-ca-cuoc-bong-da__betting-types-section,
.page-the-thao-ca-cuoc-bong-da__guide-section,
.page-the-thao-ca-cuoc-bong-da__tips-section,
.page-the-thao-ca-cuoc-bong-da__promo-section,
.page-the-thao-ca-cuoc-bong-da__faq-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
}

.page-the-thao-ca-cuoc-bong-da__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.page-the-thao-ca-cuoc-bong-da__section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Benefits Section */
.page-the-thao-ca-cuoc-bong-da__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-the-thao-ca-cuoc-bong-da__feature-item {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-the-thao-ca-cuoc-bong-da__feature-item:hover {
    transform: translateY(-5px);
}

.page-the-thao-ca-cuoc-bong-da__feature-image {
    width: 100%;
    height: auto;
    max-width: 400px; /* Ensure images are not too small */
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-the-thao-ca-cuoc-bong-da__feature-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-the-thao-ca-cuoc-bong-da__feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Betting Types Section */
.page-the-thao-ca-cuoc-bong-da__types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.page-the-thao-ca-cuoc-bong-da__type-card {
    background-color: #f9f9f9;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-the-thao-ca-cuoc-bong-da__type-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-the-thao-ca-cuoc-bong-da__type-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-the-thao-ca-cuoc-bong-da__types-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
    min-width: 200px;
    min-height: 200px;
}

/* Guide Section */
.page-the-thao-ca-cuoc-bong-da__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-the-thao-ca-cuoc-bong-da__step-item {
    text-align: center;
    padding: 20px;
    background-color: #f0f8ff;
    border-radius: 12px;
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-the-thao-ca-cuoc-bong-da__step-number {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: var(--primary-color);
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-the-thao-ca-cuoc-bong-da__step-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-the-thao-ca-cuoc-bong-da__step-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-the-thao-ca-cuoc-bong-da__step-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-the-thao-ca-cuoc-bong-da__step-text a:hover {
    color: darken(var(--primary-color), 10%);
}

.page-the-thao-ca-cuoc-bong-da__guide-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
    min-width: 200px;
    min-height: 200px;
}

/* Tips Section */
.page-the-thao-ca-cuoc-bong-da__tips-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 800px;
}

.page-the-thao-ca-cuoc-bong-da__tip-item {
    background-color: #f0f8ff;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.page-the-thao-ca-cuoc-bong-da__tip-item strong {
    color: var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__tips-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
    min-width: 200px;
    min-height: 200px;
}

/* Promo Section */
.page-the-thao-ca-cuoc-bong-da__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-the-thao-ca-cuoc-bong-da__promo-card {
    background-color: var(--secondary-color);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-the-thao-ca-cuoc-bong-da__promo-heading {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-the-thao-ca-cuoc-bong-da__promo-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-the-thao-ca-cuoc-bong-da__promo-card .page-the-thao-ca-cuoc-bong-da__btn-primary {
    margin-top: auto; /* Push button to the bottom */
}

.page-the-thao-ca-cuoc-bong-da__promo-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
    min-width: 200px;
    min-height: 200px;
}

/* FAQ Section */
.page-the-thao-ca-cuoc-bong-da__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-the-thao-ca-cuoc-bong-da__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-the-thao-ca-cuoc-bong-da__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: #f0f8ff;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-the-thao-ca-cuoc-bong-da__faq-question::-webkit-details-marker, /* Hide default marker */
.page-the-thao-ca-cuoc-bong-da__faq-question::marker {
    display: none;
}

.page-the-thao-ca-cuoc-bong-da__faq-item[open] .page-the-thao-ca-cuoc-bong-da__faq-question {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-bottom-color: var(--primary-color);
}

.page-the-thao-ca-cuoc-bong-da__faq-qtext {
    flex-grow: 1;
}

.page-the-thao-ca-cuoc-bong-da__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    width: 24px;
    text-align: center;
}

.page-the-thao-ca-cuoc-bong-da__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.page-the-thao-ca-cuoc-bong-da__faq-answer p {
    margin-bottom: 10px;
}

.page-the-thao-ca-cuoc-bong-da__faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-the-thao-ca-cuoc-bong-da__faq-answer a:hover {
    color: darken(var(--primary-color), 10%);
}

/* Image responsiveness for all images */
.page-the-thao-ca-cuoc-bong-da img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hero Section */
    .page-the-thao-ca-cuoc-bong-da__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__hero-container {
        flex-direction: column;
        gap: 20px;
    }

    .page-the-thao-ca-cuoc-bong-da__main-title {
        font-size: 2rem !important;
        text-align: center;
    }

    .page-the-thao-ca-cuoc-bong-da__description {
        font-size: 1rem !important;
        text-align: center;
    }

    .page-the-thao-ca-cuoc-bong-da__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page-the-thao-ca-cuoc-bong-da__btn-primary,
    .page-the-thao-ca-cuoc-bong-da__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 15px !important;
        font-size: 0.95rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-the-thao-ca-cuoc-bong-da__hero-image-wrapper {
        order: -1; /* Image above text on mobile */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-the-thao-ca-cuoc-bong-da__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* General Section Styling */
    .page-the-thao-ca-cuoc-bong-da__benefits-section,
    .page-the-thao-ca-cuoc-bong-da__betting-types-section,
    .page-the-thao-ca-cuoc-bong-da__guide-section,
    .page-the-thao-ca-cuoc-bong-da__tips-section,
    .page-the-thao-ca-cuoc-bong-da__promo-section,
    .page-the-thao-ca-cuoc-bong-da__faq-section {
        padding: 40px 0 !important;
    }

    .page-the-thao-ca-cuoc-bong-da__section-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__section-description {
        font-size: 0.95rem !important;
        margin-bottom: 25px !important;
        padding: 0 15px;
    }

    /* Benefits Section */
    .page-the-thao-ca-cuoc-bong-da__feature-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__feature-item {
        padding: 20px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__feature-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__feature-heading {
        font-size: 1.2rem !important;
    }

    /* Betting Types Section */
    .page-the-thao-ca-cuoc-bong-da__types-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__type-card {
        padding: 15px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__type-heading {
        font-size: 1.1rem !important;
    }

    .page-the-thao-ca-cuoc-bong-da__types-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Guide Section */
    .page-the-thao-ca-cuoc-bong-da__guide-steps {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__step-item {
        padding-top: 50px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__step-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.3rem !important;
    }

    .page-the-thao-ca-cuoc-bong-da__guide-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Tips Section */
    .page-the-thao-ca-cuoc-bong-da__tips-list {
        margin-top: 25px !important;
        padding: 0 15px;
    }

    .page-the-thao-ca-cuoc-bong-da__tip-item {
        padding: 15px !important;
        font-size: 0.95rem !important;
    }

    .page-the-thao-ca-cuoc-bong-da__tips-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* Promo Section */
    .page-the-thao-ca-cuoc-bong-da__promo-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__promo-card {
        padding: 20px !important;
    }

    .page-the-thao-ca-cuoc-bong-da__promo-heading {
        font-size: 1.2rem !important;
    }

    .page-the-thao-ca-cuoc-bong-da__promo-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    /* FAQ Section */
    .page-the-thao-ca-cuoc-bong-da__faq-list {
        margin-top: 25px !important;
        padding: 0 15px;
    }

    .page-the-thao-ca-cuoc-bong-da__faq-question {
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }

    .page-the-thao-ca-cuoc-bong-da__faq-answer {
        padding: 10px 20px 15px !important;
        font-size: 0.95rem !important;
    }

    /* Universal Image and Container Mobile Rules */
    .page-the-thao-ca-cuoc-bong-da img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-the-thao-ca-cuoc-bong-da__container,
    .page-the-thao-ca-cuoc-bong-da__feature-grid,
    .page-the-thao-ca-cuoc-bong-da__types-grid,
    .page-the-thao-ca-cuoc-bong-da__guide-steps,
    .page-the-thao-ca-cuoc-bong-da__tips-list,
    .page-the-thao-ca-cuoc-bong-da__promo-grid,
    .page-the-thao-ca-cuoc-bong-da__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
}