/* style/blog-huong-dan-ca-cuoc-the-thao-fcb8.css */

:root {
    --fcb8-primary-color: #FF8C1A;
    --fcb8-secondary-color: #FFA53A;
    --fcb8-card-bg: #17191F;
    --fcb8-background-color: #0D0E12;
    --fcb8-text-main: #FFF3E6;
    --fcb8-border-color: #A84F0C;
    --fcb8-glow-color: #FFB04D;
    --fcb8-deep-orange: #D96800;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8 {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--fcb8-text-main); /* Default text color for the page content */
    background-color: var(--fcb8-background-color); /* Matches body background assumption */
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 16px;
    box-sizing: border-box;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--fcb8-primary-color);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* HERO Section */
.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-section {
    background-color: var(--fcb8-background-color);
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 16px;
    max-width: 1170px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-content {
    flex: 1;
    color: var(--fcb8-text-main);
    max-width: 50%;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Clamp for responsive H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--fcb8-primary-color);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping for multiple buttons */
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-primary,
.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-primary {
    background: linear-gradient(180deg, var(--fcb8-secondary-color) 0%, var(--fcb8-deep-orange) 100%);
    color: var(--fcb8-text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-secondary {
    background: transparent;
    color: var(--fcb8-primary-color);
    border: 2px solid var(--fcb8-primary-color);
    box-shadow: none;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-secondary:hover {
    background-color: var(--fcb8-primary-color);
    color: var(--fcb8-text-main);
    transform: translateY(-2px);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-image {
    flex: 1;
    text-align: center;
    max-width: 50%;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__side-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

/* General Image Styling */
.page-blog-huong-dan-ca-cuoc-the-thao-fcb8 img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__content-image,
.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__step-image {
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Why Choose Section */
.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__why-choose-section {
    background-color: var(--fcb8-card-bg);
    padding: 60px 0;
    border-top: 1px solid var(--fcb8-border-color);
    border-bottom: 1px solid var(--fcb8-border-color);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__feature-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 140, 26, 0.3);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__feature-title {
    color: var(--fcb8-secondary-color);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Guide Section */
.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__guide-section {
    padding: 60px 0;
    background-color: var(--fcb8-background-color);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__guide-step {
    background-color: var(--fcb8-card-bg);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 140, 26, 0.3);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__step-title {
    color: var(--fcb8-secondary-color);
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--fcb8-primary-color);
    padding-bottom: 10px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Tips Section */
.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__tips-section {
    padding: 60px 0;
    background-color: var(--fcb8-card-bg);
    border-top: 1px solid var(--fcb8-border-color);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__tip-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 140, 26, 0.3);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__tip-title {
    color: var(--fcb8-primary-color);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

/* Promo Section */
.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__promo-section {
    padding: 60px 0;
    background-color: var(--fcb8-background-color);
    border-top: 1px solid var(--fcb8-border-color);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__promo-item {
    background-color: var(--fcb8-card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 140, 26, 0.3);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__promo-title {
    color: var(--fcb8-secondary-color);
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
}

/* FAQ Section */
.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-section {
    padding: 60px 0;
    background-color: var(--fcb8-card-bg);
    border-top: 1px solid var(--fcb8-border-color);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-list {
    margin-top: 40px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 26, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--fcb8-text-main);
    cursor: pointer;
    background-color: var(--fcb8-card-bg);
    border-bottom: 1px solid rgba(255, 140, 26, 0.2);
    list-style: none; /* For details/summary */
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-item[open] .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-question {
    color: var(--fcb8-primary-color);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-qtext {
    flex-grow: 1;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: var(--fcb8-primary-color);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-item[open] .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-answer {
    padding: 20px 25px;
    font-size: 1.1em;
    color: rgba(255, 243, 230, 0.8);
    background-color: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 140, 26, 0.1);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-answer p {
    margin: 0;
    color: inherit;
}

/* Final CTA Section */
.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-final-section {
    padding: 80px 0;
    background: linear-gradient(90deg, var(--fcb8-primary-color) 0%, var(--fcb8-deep-orange) 100%);
    color: var(--fcb8-text-main);
    text-align: center;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-final-section .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__section-title {
    color: var(--fcb8-text-main);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-final-section .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__text-block {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.3em;
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-final-section .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-primary {
    background: var(--fcb8-card-bg);
    color: var(--fcb8-primary-color);
    border: 2px solid var(--fcb8-card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-final-section .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-primary:hover {
    background: var(--fcb8-text-main);
    color: var(--fcb8-deep-orange);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-final-section .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-secondary {
    background: transparent;
    color: var(--fcb8-text-main);
    border: 2px solid var(--fcb8-text-main);
}

.page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-final-section .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-secondary:hover {
    background-color: var(--fcb8-text-main);
    color: var(--fcb8-primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 16px;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-content,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-image {
        max-width: 100%;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__main-title {
        font-size: 2.8em;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__description {
        font-size: 1.1em;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-buttons {
        justify-content: center;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__feature-list,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__tips-list,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__promo-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 40px !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-container {
        padding: 30px 15px !important;
        gap: 20px !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-content,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__hero-image {
        max-width: 100% !important;
        width: 100% !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__main-title {
        font-size: 2.2em !important;
        margin-bottom: 15px !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__description {
        font-size: 1em !important;
        margin-bottom: 25px !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px !important;
    }

    /* Buttons and Button Containers */
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-primary,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-secondary,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8 a[class*="button"],
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8 a[class*="btn"] {
        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: 1em !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-buttons,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__button-group,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    /* General Content Sections */
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__container {
        padding: 15px !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__section-title {
        font-size: 1.8em !important;
        margin-bottom: 20px !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__text-block {
        font-size: 0.95em !important;
    }

    /* Images */
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: 8px !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__content-image,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__step-image {
        margin: 20px auto !important;
    }

    /* Feature/Tips/Promo Lists (three-column becomes one-column) */
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__feature-list,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__tips-list,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__promo-list {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 25px !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__feature-item,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__tip-item,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__promo-item {
        padding: 25px !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__feature-title,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__tip-title,
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__promo-title {
        font-size: 1.3em !important;
        margin-bottom: 10px !important;
    }

    /* Guide Section */
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__guide-section {
        padding: 40px 0 !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__guide-step {
        padding: 30px !important;
        margin-bottom: 20px !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__step-title {
        font-size: 1.5em !important;
        margin-bottom: 15px !important;
    }

    /* FAQ Section */
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-section {
        padding: 40px 0 !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-question {
        padding: 15px 20px !important;
        font-size: 1.1em !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__faq-answer {
        padding: 15px 20px !important;
        font-size: 1em !important;
    }

    /* Final CTA Section */
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-final-section {
        padding: 60px 0 !important;
    }
    .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__cta-final-section .page-blog-huong-dan-ca-cuoc-the-thao-fcb8__text-block {
        font-size: 1.1em !important;
        margin-bottom: 30px !important;
    }
}