.page-huong-dan-choi {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
}

.page-huong-dan-choi__hero-section {
    padding-top: 10px; /* Small top padding to account for fixed header */
    padding-bottom: 60px;
    background-color: #0A0A0A;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-huong-dan-choi__hero-content-wrapper {
    max-width: 900px;
    padding: 0 15px;
}

.page-huong-dan-choi__main-title {
    font-size: 2.8em;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFD36B; /* Glow color for prominence */
    letter-spacing: 1px;
}

.page-huong-dan-choi__intro-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF6D6;
}

.page-huong-dan-choi__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-huong-dan-choi__btn-primary,
.page-huong-dan-choi__btn-secondary,
.page-huong-dan-choi__btn-inline,
.page-huong-dan-choi__btn-card {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
}

.page-huong-dan-choi__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for contrast on bright button */
    border: none;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-huong-dan-choi__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-huong-dan-choi__btn-secondary {
    background: #111111; /* Card BG */
    color: #F2C14E; /* Main color */
    border: 2px solid #F2C14E;
}

.page-huong-dan-choi__btn-secondary:hover {
    background: #F2C14E;
    color: #111111;
    transform: translateY(-2px);
}

.page-huong-dan-choi__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 15px;
}

.page-huong-dan-choi__guide-section,
.page-huong-dan-choi__deposit-withdraw-section,
.page-huong-dan-choi__games-overview-section,
.page-huong-dan-choi__tips-section,
.page-huong-dan-choi__faq-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-huong-dan-choi__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #F2C14E; /* Main color */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-huong-dan-choi__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD36B; /* Glow */
    border-radius: 2px;
}

.page-huong-dan-choi__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #FFF6D6;
    text-align: center;
    max-width: 800px;
    margin: -20px auto 40px auto;
}

.page-huong-dan-choi__content-grid {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.page-huong-dan-choi__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-huong-dan-choi__text-block {
    flex: 1;
    min-width: 300px;
    color: #FFF6D6;
}

.page-huong-dan-choi__image-block {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-huong-dan-choi__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

.page-huong-dan-choi__sub-title {
    font-size: 1.6em;
    color: #FFD36B; /* Glow */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-huong-dan-choi__text-block p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #FFF6D6;
}

.page-huong-dan-choi__btn-inline {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.page-huong-dan-choi__btn-inline:hover {
    opacity: 0.9;
}

.page-huong-dan-choi__game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-huong-dan-choi__card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-huong-dan-choi__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #3A2A12;
}

.page-huong-dan-choi__card-title {
    font-size: 1.4em;
    color: #FFD36B; /* Glow */
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-huong-dan-choi__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-huong-dan-choi__card-title a:hover {
    text-decoration: underline;
}

.page-huong-dan-choi__card-text {
    font-size: 0.95em;
    color: #FFF6D6;
    line-height: 1.6;
    padding: 0 15px;
    flex-grow: 1;
}

.page-huong-dan-choi__btn-card {
    margin-top: 20px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.page-huong-dan-choi__btn-card:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.page-huong-dan-choi__faq-list {
    margin-top: 40px;
}

.page-huong-dan-choi__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-huong-dan-choi__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #F2C14E; /* Main color */
    cursor: pointer;
    list-style: none; /* Hide default marker */
}

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

.page-huong-dan-choi__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #FFD36B; /* Glow */
    transition: transform 0.3s ease;
}

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

.page-huong-dan-choi__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: #FFF6D6;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .page-huong-dan-choi__main-title {
        font-size: 2.4em;
    }

    .page-huong-dan-choi__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-huong-dan-choi__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-huong-dan-choi__main-title {
        font-size: 2em;
        line-height: 1.3;
    }

    .page-huong-dan-choi__intro-text {
        font-size: 1em;
    }

    .page-huong-dan-choi__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-huong-dan-choi__btn-primary,
    .page-huong-dan-choi__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 14px 20px;
    }

    .page-huong-dan-choi__guide-section,
    .page-huong-dan-choi__deposit-withdraw-section,
    .page-huong-dan-choi__games-overview-section,
    .page-huong-dan-choi__tips-section,
    .page-huong-dan-choi__faq-section {
        padding: 40px 0;
    }

    .page-huong-dan-choi__container {
        padding: 20px 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-huong-dan-choi__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-huong-dan-choi__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-huong-dan-choi__content-grid {
        flex-direction: column;
        gap: 30px;
    }

    .page-huong-dan-choi__text-block,
    .page-huong-dan-choi__image-block {
        min-width: unset;
        width: 100%;
    }

    .page-huong-dan-choi__content-image,
    .page-huong-dan-choi__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important; /* General image adaptation */
        box-sizing: border-box !important;
    }

    .page-huong-dan-choi__sub-title {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-huong-dan-choi__text-block p {
        font-size: 0.95em;
    }

    .page-huong-dan-choi__btn-inline {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px;
        text-align: center;
    }

    .page-huong-dan-choi__game-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-huong-dan-choi__card {
        padding-bottom: 15px;
    }

    .page-huong-dan-choi__card-title {
        font-size: 1.2em;
        margin: 15px 10px 8px;
    }

    .page-huong-dan-choi__card-text {
        font-size: 0.9em;
        padding: 0 10px;
    }

    .page-huong-dan-choi__btn-card {
        max-width: 100% !important;
        width: 100% !important;
        margin: 15px auto 0 auto;
        padding: 12px 20px;
    }

    .page-huong-dan-choi__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-huong-dan-choi__faq-answer {
        font-size: 0.95em;
        padding: 0 20px 15px;
    }
    
    /* Ensure all image containers are responsive */
    .page-huong-dan-choi__section,
    .page-huong-dan-choi__card,
    .page-huong-dan-choi__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}