/* style/blog-ee88ap-nha-cai-deposit-withdrawal-guide.css */

/* Base styles for the page */
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    background-color: #08160F; /* Ensure dark background for hero section */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__hero-image-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__hero-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
    border-radius: 8px;
    margin-top: -100px; /* Pull up over image slightly for visual flow, but not covering text */
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size for H1 */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__intro-text {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__btn-primary,
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    max-width: 100%; /* Ensure buttons don't exceed container */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px #57E38D; /* Glow effect */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__btn-secondary {
    background: transparent;
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__btn-secondary:hover {
    background: rgba(46, 122, 78, 0.2); /* Border color with opacity */
    color: #57E38D; /* Glow */
    border-color: #57E38D; /* Glow */
}

/* General Section Styling */
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__section {
    padding: 60px 0;
    margin-bottom: 20px;
    background-color: #08160F; /* Default background */
    color: #F2FFF6; /* Default text color */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__section:nth-of-type(even) {
    background-color: #11271B; /* Card BG for alternating sections */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__sub-title {
    font-size: 1.8em;
    color: #22C768; /* Auxiliary color */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__text-block strong {
    color: #F2FFF6; /* Highlight strong text */
}

/* Lists */
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__list,
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #A7D9B8; /* Text Secondary */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__ordered-list {
    list-style-type: decimal;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__list li,
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__list li strong,
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__ordered-list li strong {
    color: #F2FFF6; /* Highlight list item strong text */
}

/* Links within content */
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__text-block a,
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__list a,
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__ordered-list a {
    color: #2AD16F; /* Bright green for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__text-block a:hover,
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__list a:hover,
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__ordered-list a:hover {
    color: #57E38D; /* Lighter green on hover */
    text-decoration: underline;
}

/* Content Images */
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 800px; /* Max width for content images */
    min-width: 200px; /* Minimum size */
}

/* FAQ Section */
.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-list {
    margin-top: 40px;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6; /* Text Main */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    color: #F2FFF6; /* Text Main */
    transition: background-color 0.3s ease;
    list-style: none; /* Hide default marker for details/summary */
    -webkit-touch-callout: none; /* Disable callout on iOS */
    -webkit-user-select: none;   /* Disable text selection on iOS */
    -khtml-user-select: none;    /* Disable text selection on Konqueror HTML */
    -moz-user-select: none;      /* Disable text selection on Firefox */
    -ms-user-select: none;       /* Disable text selection on Internet Explorer/Edge */
    user-select: none;           /* Disable text selection on modern browsers */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for details/summary */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-question:hover {
    background-color: rgba(46, 122, 78, 0.2); /* Hover effect */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-qtext {
    flex-grow: 1;
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #22C768; /* Auxiliary color */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-item[open] .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-toggle {
    color: #F2C14E; /* Gold when open */
}

.page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__main-title {
        font-size: clamp(1.8em, 4.5vw, 3em);
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__section-title {
        font-size: 2em;
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__hero-content {
        padding: 30px 15px;
        margin-top: -80px;
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__main-title {
        font-size: clamp(1.5em, 7vw, 2.5em) !important; /* Force smaller H1 on mobile */
        margin-bottom: 15px;
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__intro-text {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important; /* Ensure button container takes full width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px; /* Add padding to prevent buttons touching edges */
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__btn-primary,
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__btn-secondary {
        width: 100% !important; /* Force buttons to full width */
        padding: 12px 20px !important;
        font-size: 1em !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__section {
        padding: 40px 0;
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__container {
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__sub-title {
        font-size: 1.4em;
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__text-block,
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__list li,
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__ordered-list li,
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__faq-answer {
        font-size: 1em;
    }

    /* Images responsive */
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: unset !important; /* Reset min-width for mobile */
    }

    /* Video responsive (if any, though not explicitly in content) */
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide video,
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__video-section,
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__video-container,
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-ee88ap-nha-cai-deposit-withdrawal-guide__video-section {
        padding-top: 10px !important;
    }
}