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

:root {
    --color-primary: #113B7A;
    --color-secondary: #1D5FD1;
    --color-text-main: #F3F8FF;
    --color-text-secondary: #AFC4E8;
    --color-card-bg: #10233F;
    --color-border: #244D84;
    --color-glow: #4FA8FF;
    --color-gold: #F2C14E;
    --color-divider: #1B3357;
    --color-deep-navy: #08162B;
    --gradient-button: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88 {
    background-color: var(--color-deep-navy); /* Body background is dark */
    color: var(--color-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
}

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

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__hero-title-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: var(--color-deep-navy);
    text-align: center;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__main-title {
    font-size: clamp(2em, 4vw, 2.8em);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__intro-description {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

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

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__content-area {
    padding: 60px 0;
    background-color: var(--color-deep-navy);
    color: var(--color-text-main);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 30px;
    text-align: center;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__section-title--white {
    color: var(--color-text-main);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__content-area p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--color-text-secondary);
}

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

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__step-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__step-title {
    font-size: 1.6em;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 30px;
    color: var(--color-text-secondary);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__tip-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__tip-card:hover {
    background-color: #1a3052;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__tip-title {
    font-size: 1.4em;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__tip-card p {
    font-size: 0.95em;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__cta-section {
    padding: 80px 0;
    background-color: var(--color-deep-navy);
    text-align: center;
    border-top: 1px solid var(--color-divider);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__cta-text {
    font-size: 1.2em;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure button doesn't overflow on small screens */
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__btn-primary {
    background: var(--gradient-button);
    color: #ffffff; /* White text for dark button */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(43, 115, 246, 0.4);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(43, 115, 246, 0.6);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__btn-secondary {
    background-color: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__btn-secondary:hover {
    background-color: rgba(242, 193, 78, 0.1);
    transform: translateY(-3px);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-section {
    padding: 60px 0;
    background-color: var(--color-deep-navy);
    color: var(--color-text-main);
    border-top: 1px solid var(--color-divider);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: #1a3052;
    transition: background-color 0.3s ease;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-item summary:hover {
    background-color: #203a60;
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-qtext {
    flex-grow: 1;
    color: var(--color-text-main);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--color-gold);
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-item[open] .page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-toggle {
    content: "−";
}

.page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-answer {
    padding: 20px 25px 25px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--color-text-secondary);
    background-color: var(--color-card-bg);
}

/* General image responsiveness */
.page-blog-huong-dan-ca-cuoc-the-thao-kim88 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__hero-title-section {
        padding-top: 10px !important;
        padding-bottom: 20px;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__main-title {
        font-size: 2em;
        margin-bottom: 10px;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__intro-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__content-area,
    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__cta-section,
    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-section {
        padding: 40px 0;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__guide-steps,
    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__step-card,
    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__tip-card {
        padding: 20px;
    }

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

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__cta-text {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__cta-button,
    .page-blog-huong-dan-ca-cuoc-the-thao-kim88 a[class*="button"],
    .page-blog-huong-dan-ca-cuoc-the-thao-kim88 a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }

    .page-blog-huong-dan-ca-cuoc-the-thao-kim88__faq-answer {
        padding: 15px 20px 20px;
        font-size: 0.95em;
    }
}