:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --background-color-page: #F4F7FB;
    --text-main: #1F2D3D;
    --text-black: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

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

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

/* Hero Section */
.page-blog-c54c-deposit-withdrawal-guide__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image-above-text */
    align-items: center;
    text-align: center;
    padding: 10px 0 40px 0; /* Minimal top padding, rely on body for header offset */
    background: var(--background-color-page);
    position: relative;
    overflow: hidden;
}

.page-blog-c54c-deposit-withdrawal-guide__hero-image {
    width: 100%;
    max-width: 800px; /* Adjust based on desired hero image width */
    height: auto;
    object-fit: contain; /* Ensure image is not cropped */
    margin-bottom: 20px;
}

.page-blog-c54c-deposit-withdrawal-guide__hero-content {
    padding: 0 20px;
    max-width: 800px;
    width: 100%;
    box-sizing: border-box;
}

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

.page-blog-c54c-deposit-withdrawal-guide__intro-text {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 30px;
}

.page-blog-c54c-deposit-withdrawal-guide__btn-primary,
.page-blog-c54c-deposit-withdrawal-guide__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 10px 10px 10px;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-blog-c54c-deposit-withdrawal-guide__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-blog-c54c-deposit-withdrawal-guide__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-c54c-deposit-withdrawal-guide__btn-secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-c54c-deposit-withdrawal-guide__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Content Section */
.page-blog-c54c-deposit-withdrawal-guide__content-section {
    padding: 40px 0;
    background-color: var(--card-bg);
    border-radius: 10px;
    margin: 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-blog-c54c-deposit-withdrawal-guide__section-title {
    font-size: 2rem;
    color: var(--text-black);
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-blog-c54c-deposit-withdrawal-guide__content-section p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--text-main);
    line-height: 1.7;
}

/* Step-by-Step Guide */
.page-blog-c54c-deposit-withdrawal-guide__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-blog-c54c-deposit-withdrawal-guide__step-item {
    background-color: var(--background-color-page);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-blog-c54c-deposit-withdrawal-guide__step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-blog-c54c-deposit-withdrawal-guide__step-title {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Feature List */
.page-blog-c54c-deposit-withdrawal-guide__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.page-blog-c54c-deposit-withdrawal-guide__feature-item {
    background-color: var(--background-color-page);
    padding: 25px;
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-blog-c54c-deposit-withdrawal-guide__feature-title {
    font-size: 1.3rem;
    color: var(--text-black);
    margin-bottom: 10px;
}

/* Tips Grid */
.page-blog-c54c-deposit-withdrawal-guide__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.page-blog-c54c-deposit-withdrawal-guide__tip-card {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.page-blog-c54c-deposit-withdrawal-guide__tip-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* FAQ Section */
.page-blog-c54c-deposit-withdrawal-guide__faq-list {
    margin-top: 30px;
}

.page-blog-c54c-deposit-withdrawal-guide__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.page-blog-c54c-deposit-withdrawal-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-black);
    cursor: pointer;
    background-color: var(--background-color-page);
    border-bottom: 1px solid var(--border-color);
}

.page-blog-c54c-deposit-withdrawal-guide__faq-item[open] .page-blog-c54c-deposit-withdrawal-guide__faq-question {
    border-bottom: 1px solid var(--border-color);
}

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

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

.page-blog-c54c-deposit-withdrawal-guide__faq-answer {
    padding: 15px 25px;
    font-size: 1rem;
    color: var(--text-main);
    background-color: var(--card-bg);
}

/* Ensure details marker is hidden */
.page-blog-c54c-deposit-withdrawal-guide__faq-item summary::-webkit-details-marker,
.page-blog-c54c-deposit-withdrawal-guide__faq-item summary::marker {
    display: none;
    content: "";
}

/* CTA Section */
.page-blog-c54c-deposit-withdrawal-guide__cta-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    margin-top: 50px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-c54c-deposit-withdrawal-guide__cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-blog-c54c-deposit-withdrawal-guide__cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Footer */
.page-blog-c54c-deposit-withdrawal-guide__footer {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 25px 0;
    margin-top: 50px;
}

.page-blog-c54c-deposit-withdrawal-guide__footer p {
    margin: 0;
    font-size: 0.9rem;
}

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

/* Tablet and Mobile (max-width: 1024px) */
@media (max-width: 1024px) {
    .page-blog-c54c-deposit-withdrawal-guide__container {
        padding: 15px;
    }

    .page-blog-c54c-deposit-withdrawal-guide__hero-image {
        max-width: 700px;
    }

    .page-blog-c54c-deposit-withdrawal-guide__main-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }

    .page-blog-c54c-deposit-withdrawal-guide__section-title {
        font-size: 1.8rem;
    }

    .page-blog-c54c-deposit-withdrawal-guide__step-by-step,
    .page-blog-c54c-deposit-withdrawal-guide__feature-list,
    .page-blog-c54c-deposit-withdrawal-guide__tips-grid {
        gap: 20px;
    }

    .page-blog-c54c-deposit-withdrawal-guide__cta-title {
        font-size: 2rem;
    }

    .page-blog-c54c-deposit-withdrawal-guide__cta-description {
        font-size: 1.1rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .page-blog-c54c-deposit-withdrawal-guide__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Hero Section - Image above text (already flex-direction: column) */
    .page-blog-c54c-deposit-withdrawal-guide__hero-section {
        padding-top: 10px !important; /* Minimal top padding */
        padding-bottom: 30px;
    }

    .page-blog-c54c-deposit-withdrawal-guide__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important; /* Ensure image is not cropped */
        aspect-ratio: unset !important; /* Remove fixed aspect ratio if any */
        max-height: none !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-blog-c54c-deposit-withdrawal-guide__hero-content {
        padding: 0 15px;
    }

    .page-blog-c54c-deposit-withdrawal-guide__main-title {
        font-size: 1.8rem;
    }

    .page-blog-c54c-deposit-withdrawal-guide__intro-text {
        font-size: 1rem;
    }

    /* Buttons and Button Containers */
    .page-blog-c54c-deposit-withdrawal-guide__btn-primary,
    .page-blog-c54c-deposit-withdrawal-guide__btn-secondary,
    .page-blog-c54c-deposit-withdrawal-guide a[class*="button"],
    .page-blog-c54c-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;
        margin: 10px 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .page-blog-c54c-deposit-withdrawal-guide__hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* General Images and Containers */
    .page-blog-c54c-deposit-withdrawal-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    
    .page-blog-c54c-deposit-withdrawal-guide__content-section,
    .page-blog-c54c-deposit-withdrawal-guide__step-item,
    .page-blog-c54c-deposit-withdrawal-guide__feature-item,
    .page-blog-c54c-deposit-withdrawal-guide__tip-card,
    .page-blog-c54c-deposit-withdrawal-guide__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .page-blog-c54c-deposit-withdrawal-guide__section-title {
        font-size: 1.5rem;
    }

    .page-blog-c54c-deposit-withdrawal-guide__step-by-step,
    .page-blog-c54c-deposit-withdrawal-guide__feature-list,
    .page-blog-c54c-deposit-withdrawal-guide__tips-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-c54c-deposit-withdrawal-guide__cta-title {
        font-size: 1.8rem;
    }

    .page-blog-c54c-deposit-withdrawal-guide__cta-description {
        font-size: 1rem;
    }

    .page-blog-c54c-deposit-withdrawal-guide__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-blog-c54c-deposit-withdrawal-guide__faq-answer {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    /* No winner list or game grid on this page, so no specific 768px rules for them */
    /* Blog/News specific: This is a blog post, so no generic "blog list" or "news list" blocks, but general text/card styles apply. */
}