/* style/blog-c168b-deposit-withdrawal-guide.css */

:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --light-text-on-dark: #F2FFF6;
    --dark-text-on-light: #333333;
}

.page-blog-c168b-deposit-withdrawal-guide {
    background-color: var(--background-color);
    color: var(--text-main-color);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-c168b-deposit-withdrawal-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px; /* Space for content below image */
}

.page-blog-c168b-deposit-withdrawal-guide__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-c168b-deposit-withdrawal-guide__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    margin-top: -100px; /* Overlap with image slightly for visual flow */
    background: rgba(17, 39, 27, 0.9); /* Card BG with transparency */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-main-color);
}

.page-blog-c168b-deposit-withdrawal-guide__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--gold-color);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-blog-c168b-deposit-withdrawal-guide__hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
}

.page-blog-c168b-deposit-withdrawal-guide__cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog-c168b-deposit-withdrawal-guide__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-c168b-deposit-withdrawal-guide__cta-button--centered {
    display: block;
    margin: 30px auto;
    max-width: 300px;
    text-align: center;
}

.page-blog-c168b-deposit-withdrawal-guide__cta-button--final {
    margin-top: 40px;
    font-size: 1.2rem;
    padding: 15px 30px;
}

.page-blog-c168b-deposit-withdrawal-guide__section {
    padding: 60px 0;
}

.page-blog-c168b-deposit-withdrawal-guide__dark-section {
    background-color: var(--card-bg);
}

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

.page-blog-c168b-deposit-withdrawal-guide__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-c168b-deposit-withdrawal-guide__section-description {
    font-size: 1.1rem;
    color: var(--text-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-c168b-deposit-withdrawal-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-c168b-deposit-withdrawal-guide__feature-item {
    background: var(--deep-green-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--text-main-color);
}

.page-blog-c168b-deposit-withdrawal-guide__feature-icon {
    width: 100%;
    height: auto;
    max-width: 250px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-c168b-deposit-withdrawal-guide__feature-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-c168b-deposit-withdrawal-guide__feature-text {
    font-size: 1rem;
    color: var(--text-secondary-color);
}

.page-blog-c168b-deposit-withdrawal-guide__subsection {
    margin-bottom: 40px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--divider-color);
    color: var(--text-main-color);
}

.page-blog-c168b-deposit-withdrawal-guide__subsection-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.page-blog-c168b-deposit-withdrawal-guide__list,
.page-blog-c168b-deposit-withdrawal-guide__steps-list,
.page-blog-c168b-deposit-withdrawal-guide__security-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-secondary-color);
}

.page-blog-c168b-deposit-withdrawal-guide__list li,
.page-blog-c168b-deposit-withdrawal-guide__steps-list li,
.page-blog-c168b-deposit-withdrawal-guide__security-list li {
    background: var(--deep-green-color);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-main-color);
}

.page-blog-c168b-deposit-withdrawal-guide__steps-list li:last-child,
.page-blog-c168b-deposit-withdrawal-guide__list li:last-child,
.page-blog-c168b-deposit-withdrawal-guide__security-list li:last-child {
    margin-bottom: 0;
}

.page-blog-c168b-deposit-withdrawal-guide__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
}

.page-blog-c168b-deposit-withdrawal-guide__faq-list {
    margin-top: 30px;
}

.page-blog-c168b-deposit-withdrawal-guide__faq-item {
    background: var(--deep-green-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main-color);
}

.page-blog-c168b-deposit-withdrawal-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-main-color);
    list-style: none; /* For details/summary */
}

.page-blog-c168b-deposit-withdrawal-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-c168b-deposit-withdrawal-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.page-blog-c168b-deposit-withdrawal-guide__faq-item[open] .page-blog-c168b-deposit-withdrawal-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-c168b-deposit-withdrawal-guide__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary-color);
}

.page-blog-c168b-deposit-withdrawal-guide__conclusion {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 60px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-blog-c168b-deposit-withdrawal-guide__hero-content {
        margin-top: -80px;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .page-blog-c168b-deposit-withdrawal-guide__hero-section {
        padding-bottom: 20px;
    }
    .page-blog-c168b-deposit-withdrawal-guide__hero-content {
        margin-top: -60px;
        padding: 15px;
        max-width: 90%;
    }
    .page-blog-c168b-deposit-withdrawal-guide__main-title {
        font-size: 1.8rem;
    }
    .page-blog-c168b-deposit-withdrawal-guide__hero-description {
        font-size: 1rem;
    }
    .page-blog-c168b-deposit-withdrawal-guide__section {
        padding: 40px 0;
    }
    .page-blog-c168b-deposit-withdrawal-guide__container {
        padding: 0 15px;
    }
    .page-blog-c168b-deposit-withdrawal-guide__section-title {
        font-size: 2rem;
    }
    .page-blog-c168b-deposit-withdrawal-guide__subsection-title {
        font-size: 1.5rem;
    }
    .page-blog-c168b-deposit-withdrawal-guide__features-grid {
        grid-template-columns: 1fr;
    }
    .page-blog-c168b-deposit-withdrawal-guide__feature-item,
    .page-blog-c168b-deposit-withdrawal-guide__subsection,
    .page-blog-c168b-deposit-withdrawal-guide__faq-item {
        padding: 15px;
    }
    .page-blog-c168b-deposit-withdrawal-guide__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-blog-c168b-deposit-withdrawal-guide__faq-answer {
        padding: 0 20px 15px;
    }
    
    /* Mobile image responsive adaptations */
    .page-blog-c168b-deposit-withdrawal-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-c168b-deposit-withdrawal-guide__section,
    .page-blog-c168b-deposit-withdrawal-guide__card,
    .page-blog-c168b-deposit-withdrawal-guide__container,
    .page-blog-c168b-deposit-withdrawal-guide__subsection {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

    /* Mobile button responsive adaptations */
    .page-blog-c168b-deposit-withdrawal-guide__cta-button,
    .page-blog-c168b-deposit-withdrawal-guide a[class*="button"],
    .page-blog-c168b-deposit-withdrawal-guide 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-blog-c168b-deposit-withdrawal-guide__cta-button--centered,
    .page-blog-c168b-deposit-withdrawal-guide__cta-button--final {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
    }
    .page-blog-c168b-deposit-withdrawal-guide__cta-buttons,
    .page-blog-c168b-deposit-withdrawal-guide__button-group,
    .page-blog-c168b-deposit-withdrawal-guide__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}

/* Ensure image minimum size */
.page-blog-c168b-deposit-withdrawal-guide img {
    min-width: 200px;
    min-height: 200px;
}

/* Body background color ensures contrast for main text */
.page-blog-c168b-deposit-withdrawal-guide p,
.page-blog-c168b-deposit-withdrawal-guide li,
.page-blog-c168b-deposit-withdrawal-guide__feature-text,
.page-blog-c168b-deposit-withdrawal-guide__faq-answer p {
    color: var(--text-secondary-color);
}

.page-blog-c168b-deposit-withdrawal-guide strong {
    color: var(--text-main-color);
}

.page-blog-c168b-deposit-withdrawal-guide__section-description strong {
    color: var(--gold-color);
}

.page-blog-c168b-deposit-withdrawal-guide__main-title strong {
    color: var(--gold-color);
}

/* Ensure content area images do not have filters */
.page-blog-c168b-deposit-withdrawal-guide img {
    filter: none; /* No CSS filter allowed */
}

/* Content area image CSS size lower bound */
.page-blog-c168b-deposit-withdrawal-guide img:not(.page-blog-c168b-deposit-withdrawal-guide__feature-icon) {
    min-width: 200px;
    min-height: 200px;
}

/* Special handling for video section padding-top if needed, but rely on body padding */
.page-blog-c168b-deposit-withdrawal-guide__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}