/* style/help-center-deposit-withdrawal.css */
.page-help-center-deposit-withdrawal {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

.page-help-center-deposit-withdrawal__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-help-center-deposit-withdrawal__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475d 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

.page-help-center-deposit-withdrawal__title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-help-center-deposit-withdrawal__subtitle {
    font-size: 1.3em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-help-center-deposit-withdrawal__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-help-center-deposit-withdrawal__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-help-center-deposit-withdrawal__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-help-center-deposit-withdrawal__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-help-center-deposit-withdrawal__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-help-center-deposit-withdrawal__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
}

.page-help-center-deposit-withdrawal__section {
    padding: 60px 0;
    text-align: left;
}

.page-help-center-deposit-withdrawal__section--alt-bg {
    background-color: #2a3447;
}

.page-help-center-deposit-withdrawal__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.page-help-center-deposit-withdrawal__sub-section-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-help-center-deposit-withdrawal p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-help-center-deposit-withdrawal .highlight {
    color: #FFD700;
}

.page-help-center-deposit-withdrawal .keyword {
    font-weight: bold;
    color: #FFD700;
}

.page-help-center-deposit-withdrawal__list,
.page-help-center-deposit-withdrawal__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-help-center-deposit-withdrawal__ordered-list {
    list-style-type: decimal;
}

.page-help-center-deposit-withdrawal__list li,
.page-help-center-deposit-withdrawal__ordered-list li {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-help-center-deposit-withdrawal__text-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-help-center-deposit-withdrawal__text-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-help-center-deposit-withdrawal__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-help-center-deposit-withdrawal__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-help-center-deposit-withdrawal__text-content {
    flex: 1;
}

.page-help-center-deposit-withdrawal__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-help-center-deposit-withdrawal__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-help-center-deposit-withdrawal__image--large {
    max-width: 80%;
    margin-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-help-center-deposit-withdrawal__faq-item {
    background-color: #2a3447;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-help-center-deposit-withdrawal__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.page-help-center-deposit-withdrawal__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-help-center-deposit-withdrawal__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-help-center-deposit-withdrawal__faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    display: none;
}

.page-help-center-deposit-withdrawal__faq-answer.active {
    display: block;
}

.page-help-center-deposit-withdrawal__call-to-action {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #1A202C;
    border-radius: 10px;
    border: 1px solid #FFD700;
}

.page-help-center-deposit-withdrawal__call-to-action p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-help-center-deposit-withdrawal__section--final-cta {
    text-align: center;
    padding-bottom: 80px;
}

.page-help-center-deposit-withdrawal__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    background-color: #FFD700;
    color: #1A202C;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    padding: 20px;
    z-index: 1000;
    display: none; /* Hidden by default, shown by JS */
    animation: slideIn 0.5s forwards;
    transform: translateX(120%);
}

.page-help-center-deposit-withdrawal__floating-ad.show {
    display: block;
    transform: translateX(0);
}

@keyframes slideIn {
    from { transform: translateX(120%); }
    to { transform: translateX(0); }
}

.page-help-center-deposit-withdrawal__floating-ad-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #1A202C;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
}

.page-help-center-deposit-withdrawal__floating-ad-close-btn:hover {
    color: #333;
}

.page-help-center-deposit-withdrawal__floating-ad-content {
    text-align: center;
    position: relative;
    padding-top: 10px;
}

.page-help-center-deposit-withdrawal__floating-ad-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #1A202C;
    font-weight: 700;
}

.page-help-center-deposit-withdrawal__floating-ad-text {
    font-size: 1em;
    margin-bottom: 15px;
    color: #333;
}

.page-help-center-deposit-withdrawal__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    background-color: #1A202C;
    color: #FFD700;
}

.page-help-center-deposit-withdrawal__btn--small:hover {
    background-color: #333;
    color: #FFD700;
}

.page-help-center-deposit-withdrawal__floating-ad-icon {
    width: 60px;
    height: auto;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-help-center-deposit-withdrawal__title {
        font-size: 2.5em;
    }
    .page-help-center-deposit-withdrawal__subtitle {
        font-size: 1.1em;
    }
    .page-help-center-deposit-withdrawal__section-title {
        font-size: 2em;
    }
    .page-help-center-deposit-withdrawal__sub-section-title {
        font-size: 1.5em;
    }
    .page-help-center-deposit-withdrawal__content-wrapper {
        flex-direction: column;
    }
    .page-help-center-deposit-withdrawal__content-wrapper--reverse {
        flex-direction: column-reverse;
    }
    .page-help-center-deposit-withdrawal__image-wrapper {
        margin-top: 30px;
    }
    .page-help-center-deposit-withdrawal__floating-ad {
        width: 280px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 768px) {
    .page-help-center-deposit-withdrawal__hero-section {
        padding: 60px 0;
    }
    .page-help-center-deposit-withdrawal__title {
        font-size: 2em;
    }
    .page-help-center-deposit-withdrawal__subtitle {
        font-size: 1em;
    }
    .page-help-center-deposit-withdrawal__section {
        padding: 40px 0;
    }
    .page-help-center-deposit-withdrawal__section-title {
        font-size: 1.8em;
    }
    .page-help-center-deposit-withdrawal__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-help-center-deposit-withdrawal__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-help-center-deposit-withdrawal__list,
    .page-help-center-deposit-withdrawal__ordered-list {
        margin-left: 20px;
    }
    .page-help-center-deposit-withdrawal__faq-item {
        padding: 20px;
    }
    .page-help-center-deposit-withdrawal__faq-question {
        font-size: 1.2em;
    }
    .page-help-center-deposit-withdrawal__call-to-action p {
        font-size: 1.1em;
    }
    .page-help-center-deposit-withdrawal__floating-ad {
        width: 90%;
        left: 5%;
        right: 5%;
        bottom: 10px;
    }
}