:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --bg-dark: #0A0A0A;
    --card-bg: #111111;
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --btn-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm */
.page-blog-hi8823-betting-guide {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Text Main: #FFF6D6 */
    background-color: var(--bg-dark); /* Background: #0A0A0A */
    line-height: 1.6;
    padding-top: 0; /* Đảm bảo không có padding-top trùng lặp với body */
}

.page-blog-hi8823-betting-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-hi8823-betting-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Nhỏ gọn, không sử dụng var(--header-offset) */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.page-blog-hi8823-betting-guide__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Giới hạn chiều cao cho hero image */
    overflow: hidden;
    position: relative;
}

.page-blog-hi8823-betting-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-hi8823-betting-guide__hero-content {
    position: relative;
    z-index: 10;
    margin-top: 40px;
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-hi8823-betting-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--secondary-color); /* Glow: #FFD36B */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-hi8823-betting-guide__lead-text {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-main);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-hi8823-betting-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-blog-hi8823-betting-guide__btn-primary,
.page-blog-hi8823-betting-guide__btn-secondary,
.page-blog-hi8823-betting-guide__btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-hi8823-betting-guide__btn-primary {
    background: var(--btn-gradient); /* Button: linear-gradient */
    color: #ffffff; /* Luôn dùng trắng cho chữ nút chính */
    border: none;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-hi8823-betting-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-blog-hi8823-betting-guide__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color); /* Glow: #FFD36B */
    border: 2px solid var(--secondary-color); /* Glow: #FFD36B */
}

.page-blog-hi8823-betting-guide__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.page-blog-hi8823-betting-guide__btn-tertiary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    margin-top: 15px;
}

.page-blog-hi8823-betting-guide__btn-tertiary:hover {
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.page-blog-hi8823-betting-guide__introduction-section,
.page-blog-hi8823-betting-guide__content-section,
.page-blog-hi8823-betting-guide__faq-section,
.page-blog-hi8823-betting-guide__cta-section {
    padding: 60px 0;
    position: relative;
}

.page-blog-hi8823-betting-guide__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-blog-hi8823-betting-guide__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.page-blog-hi8823-betting-guide__content-section p {
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-blog-hi8823-betting-guide__list,
.page-blog-hi8823-betting-guide__ordered-list {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-blog-hi8823-betting-guide__list li,
.page-blog-hi8823-betting-guide__ordered-list li {
    margin-bottom: 10px;
}

.page-blog-hi8823-betting-guide__dark-section {
    background-color: var(--card-bg); /* Card BG: #111111 */
    border-top: 1px solid var(--border-color); /* Border: #3A2A12 */
    border-bottom: 1px solid var(--border-color); /* Border: #3A2A12 */
}

.page-blog-hi8823-betting-guide__image-block {
    margin: 30px auto;
    max-width: 800px;
    text-align: center;
}

.page-blog-hi8823-betting-guide__content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: block;
    min-width: 200px; /* Tối thiểu 200px */
    min-height: 200px; /* Tối thiểu 200px */
    object-fit: cover;
}

/* FAQ Section */
.page-blog-hi8823-betting-guide__faq-list {
    margin-top: 30px;
}

.page-blog-hi8823-betting-guide__faq-item {
    background-color: var(--card-bg); /* Card BG: #111111 */
    border: 1px solid var(--border-color); /* Border: #3A2A12 */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-hi8823-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary-color);
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-blog-hi8823-betting-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-hi8823-betting-guide__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.1);
}

.page-blog-hi8823-betting-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--secondary-color);
}

.page-blog-hi8823-betting-guide__faq-answer {
    padding: 0 25px 20px;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.7;
}

.page-blog-hi8823-betting-guide__faq-answer p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-hi8823-betting-guide__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-hi8823-betting-guide__lead-text {
        font-size: 1.1rem;
    }
    .page-blog-hi8823-betting-guide__section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    .page-blog-hi8823-betting-guide__sub-title {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
    }
}

@media (max-width: 768px) {
    .page-blog-hi8823-betting-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-hi8823-betting-guide__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-hi8823-betting-guide__hero-content {
        margin-top: 20px;
    }
    .page-blog-hi8823-betting-guide__main-title {
        font-size: 2.2rem;
    }
    .page-blog-hi8823-betting-guide__lead-text {
        font-size: 1rem;
    }
    .page-blog-hi8823-betting-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        padding: 0 15px;
    }
    .page-blog-hi8823-betting-guide__btn-primary,
    .page-blog-hi8823-betting-guide__btn-secondary,
    .page-blog-hi8823-betting-guide__btn-tertiary {
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }
    .page-blog-hi8823-betting-guide__introduction-section,
    .page-blog-hi8823-betting-guide__content-section,
    .page-blog-hi8823-betting-guide__faq-section,
    .page-blog-hi8823-betting-guide__cta-section {
        padding: 40px 0;
    }
    .page-blog-hi8823-betting-guide__container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-blog-hi8823-betting-guide__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-hi8823-betting-guide__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        margin: 20px auto;
    }
    .page-blog-hi8823-betting-guide__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-blog-hi8823-betting-guide__faq-answer {
        padding: 0 20px 15px;
    }
}

@media (max-width: 480px) {
    .page-blog-hi8823-betting-guide__main-title {
        font-size: 1.8rem;
    }
    .page-blog-hi8823-betting-guide__section-title {
        font-size: 1.5rem;
    }
    .page-blog-hi8823-betting-guide__sub-title {
        font-size: 1.2rem;
    }
    .page-blog-hi8823-betting-guide__btn-primary,
    .page-blog-hi8823-betting-guide__btn-secondary,
    .page-blog-hi8823-betting-guide__btn-tertiary {
        min-width: unset;
    }
}