.page-huong-dan-ca-cuoc {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F3F8FF; /* Text Main */
    background-color: transparent; /* Body background is #000 from shared.css */
}

.page-huong-dan-ca-cuoc__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 20px 16px;
    box-sizing: border-box;
}

.page-huong-dan-ca-cuoc__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #F3F8FF; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-huong-dan-ca-cuoc__section-description {
    font-size: 18px;
    color: #AFC4E8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-huong-dan-ca-cuoc__btn-primary,
.page-huong-dan-ca-cuoc__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-huong-dan-ca-cuoc__btn-primary {
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button */
    color: #F3F8FF; /* Text Main */
    border: none;
}

.page-huong-dan-ca-cuoc__btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 0 15px #4FA8FF; /* Glow */
}

.page-huong-dan-ca-cuoc__btn-secondary {
    background: transparent;
    color: #F3F8FF; /* Text Main */
    border: 2px solid #244D84; /* Border */
}

.page-huong-dan-ca-cuoc__btn-secondary:hover {
    background: #113B7A; /* Main color */
    color: #F3F8FF;
    box-shadow: 0 0 15px rgba(36, 77, 132, 0.5);
}

.page-huong-dan-ca-cuoc__btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* HERO Section */
.page-huong-dan-ca-cuoc__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: #08162B; /* Deep Navy */
}

.page-huong-dan-ca-cuoc__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 40px 16px;
}

.page-huong-dan-ca-cuoc__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
}

.page-huong-dan-ca-cuoc__hero-title {
    font-size: clamp(2.5rem, 5vw, 3rem); /* Adjusted to clamp for H1 */
    font-weight: 800;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 600px;
}

.page-huong-dan-ca-cuoc__hero-description {
    font-size: 20px;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 600px;
}

.page-huong-dan-ca-cuoc__hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    max-width: 450px;
}

.page-huong-dan-ca-cuoc__hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-huong-dan-ca-cuoc__hero-visual {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
}

/* Intro Section */
.page-huong-dan-ca-cuoc__intro-section {
    padding: 80px 0;
}

.page-huong-dan-ca-cuoc__dark-section {
    background-color: #08162B; /* Deep Navy */
}

.page-huong-dan-ca-cuoc__icon-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.page-huong-dan-ca-cuoc__icon-box {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    padding: 30px;
    background-color: #10233F; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #244D84; /* Border */
}

.page-huong-dan-ca-cuoc__icon-box-media {
    width: 180px;
    height: 180px;
    aspect-ratio: 1/1;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #F2C14E; /* Gold */
    box-shadow: 0 0 15px rgba(242, 193, 78, 0.4);
}

.page-huong-dan-ca-cuoc__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.page-huong-dan-ca-cuoc__icon-box-title {
    font-size: 24px;
    font-weight: 700;
    color: #F3F8FF; /* Text Main */
    margin-bottom: 15px;
}

.page-huong-dan-ca-cuoc__icon-box-text {
    font-size: 16px;
    color: #AFC4E8; /* Text Secondary */
}

/* Guide Section */
.page-huong-dan-ca-cuoc__guide-section {
    padding: 80px 0;
    background-color: #08162B; /* Deep Navy */
}

.page-huong-dan-ca-cuoc__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-huong-dan-ca-cuoc__guide-item {
    background-color: #10233F; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid #244D84; /* Border */
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-huong-dan-ca-cuoc__guide-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%); /* Button */
    color: #F3F8FF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border: 3px solid #244D84;
    box-shadow: 0 0 15px rgba(79, 168, 255, 0.6);
}

.page-huong-dan-ca-cuoc__guide-step-title {
    font-size: 22px;
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-huong-dan-ca-cuoc__guide-step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-huong-dan-ca-cuoc__guide-step-text {
    font-size: 16px;
    color: #AFC4E8; /* Text Secondary */
    margin-bottom: 25px;
    text-align: left;
    flex-grow: 1;
}

.page-huong-dan-ca-cuoc__guide-step-text a {
    color: #4FA8FF; /* Glow */
    text-decoration: none;
}

.page-huong-dan-ca-cuoc__guide-step-text a:hover {
    text-decoration: underline;
}

/* Tips Section */
.page-huong-dan-ca-cuoc__tips-section {
    padding: 80px 0;
}

.page-huong-dan-ca-cuoc__tips-list {
    list-style: none;
    padding: 0;
    margin: 50px auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-huong-dan-ca-cuoc__tip-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    font-size: 17px;
    color: #F3F8FF; /* Text Main */
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.page-huong-dan-ca-cuoc__tip-item::before {
    content: '✓';
    color: #4FA8FF; /* Glow */
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.page-huong-dan-ca-cuoc__tip-item strong {
    color: #F2C14E; /* Gold */
}

.page-huong-dan-ca-cuoc__tips-cta {
    text-align: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-huong-dan-ca-cuoc__faq-section {
    padding: 80px 0;
    background-color: #08162B; /* Deep Navy */
}

.page-huong-dan-ca-cuoc__faq-list {
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.page-huong-dan-ca-cuoc__faq-item {
    background-color: #10233F; /* Card BG */
    border: 1px solid #244D84; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F3F8FF;
}

.page-huong-dan-ca-cuoc__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    background-color: #1B3357; /* Divider - slightly darker for summary */
    color: #F2C14E; /* Gold */
    list-style: none; /* For details/summary */
}

.page-huong-dan-ca-cuoc__faq-question::-webkit-details-marker {
    display: none;
}

.page-huong-dan-ca-cuoc__faq-question .page-huong-dan-ca-cuoc__faq-toggle {
    font-size: 24px;
    line-height: 1;
    color: #4FA8FF; /* Glow */
    transition: transform 0.3s ease;
}

.page-huong-dan-ca-cuoc__faq-item[open] .page-huong-dan-ca-cuoc__faq-toggle {
    transform: rotate(45deg);
}

.page-huong-dan-ca-cuoc__faq-answer {
    padding: 15px 25px 20px;
    font-size: 16px;
    color: #AFC4E8; /* Text Secondary */
    border-top: 1px solid #1B3357; /* Divider */
}

.page-huong-dan-ca-cuoc__faq-answer p {
    margin: 0;
}

.page-huong-dan-ca-cuoc__faq-answer a {
    color: #4FA8FF;
    text-decoration: none;
}

.page-huong-dan-ca-cuoc__faq-answer a:hover {
    text-decoration: underline;
}

/* Final CTA Section */
.page-huong-dan-ca-cuoc__cta-final-section {
    padding: 80px 0;
    text-align: center;
}

.page-huong-dan-ca-cuoc__cta-final-section .page-huong-dan-ca-cuoc__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

/* General Image styles for content area */
.page-huong-dan-ca-cuoc img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-huong-dan-ca-cuoc__hero-title {
        font-size: 42px;
    }
    .page-huong-dan-ca-cuoc__section-title {
        font-size: 32px;
    }
    .page-huong-dan-ca-cuoc__hero-cta-buttons {
        justify-content: center;
        max-width: none;
    }
    .page-huong-dan-ca-cuoc__hero-content,
    .page-huong-dan-ca-cuoc__hero-image {
        flex: 1 1 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-huong-dan-ca-cuoc__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-huong-dan-ca-cuoc__hero-container {
        flex-direction: column;
        padding: 30px 15px;
        gap: 30px;
    }
    .page-huong-dan-ca-cuoc__hero-content {
        text-align: center;
    }
    .page-huong-dan-ca-cuoc__hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    .page-huong-dan-ca-cuoc__hero-description {
        font-size: 16px;
        margin-bottom: 25px;
    }
    .page-huong-dan-ca-cuoc__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        max-width: 100% !important;
    }

    /* Buttons general */
    .page-huong-dan-ca-cuoc__btn-primary,
    .page-huong-dan-ca-cuoc__btn-secondary,
    .page-huong-dan-ca-cuoc a[class*="button"],
    .page-huong-dan-ca-cuoc 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-left: 15px;
        padding-right: 15px;
    }
    .page-huong-dan-ca-cuoc__hero-cta-buttons,
    .page-huong-dan-ca-cuoc__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-huong-dan-ca-cuoc__hero-cta-buttons,
    .page-huong-dan-ca-cuoc__cta-buttons {
        display: flex;
        flex-direction: column; /* Ensure vertical stacking on mobile */
    }

    /* Section Titles and Descriptions */
    .page-huong-dan-ca-cuoc__section-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .page-huong-dan-ca-cuoc__section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    /* Intro Section - Icon Boxes */
    .page-huong-dan-ca-cuoc__icon-boxes {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    .page-huong-dan-ca-cuoc__icon-box {
        max-width: 100%;
        width: 100%;
        padding: 25px;
    }
    .page-huong-dan-ca-cuoc__icon-box-media {
        width: 160px;
        height: 160px;
        margin-bottom: 20px;
    }

    /* Guide Section */
    .page-huong-dan-ca-cuoc__guide-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-huong-dan-ca-cuoc__guide-item {
        padding: 25px;
    }
    .page-huong-dan-ca-cuoc__guide-step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: -15px;
    }
    .page-huong-dan-ca-cuoc__guide-step-title {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-huong-dan-ca-cuoc__guide-step-text {
        font-size: 15px;
    }

    /* Tips Section */
    .page-huong-dan-ca-cuoc__tips-list {
        margin-top: 30px;
    }
    .page-huong-dan-ca-cuoc__tip-item {
        font-size: 15px;
        padding: 18px 20px;
    }

    /* FAQ Section */
    .page-huong-dan-ca-cuoc__faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
    .page-huong-dan-ca-cuoc__faq-answer {
        font-size: 15px;
        padding: 12px 20px 18px;
    }

    /* General Images */
    .page-huong-dan-ca-cuoc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-huong-dan-ca-cuoc__container,
    .page-huong-dan-ca-cuoc__section,
    .page-huong-dan-ca-cuoc__card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* All sections padding */
    .page-huong-dan-ca-cuoc__hero-section,
    .page-huong-dan-ca-cuoc__intro-section,
    .page-huong-dan-ca-cuoc__guide-section,
    .page-huong-dan-ca-cuoc__tips-section,
    .page-huong-dan-ca-cuoc__faq-section,
    .page-huong-dan-ca-cuoc__cta-final-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}