/* style/deposit-withdrawal-deposit-methods.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --dark-bg-color: #1a1a2e;
    --light-text-color: #ffffff;
    --dark-text-color: #333333;
    --login-button-color: #EA7C07;
}

/* Body background is dark from shared.css, so default text should be light */
.page-deposit-withdrawal-deposit-methods {
    color: var(--light-text-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--dark-bg-color); /* Ensure consistency if main has its own bg */
}

.page-deposit-withdrawal-deposit-methods__dark-bg {
    background-color: var(--dark-bg-color);
    color: var(--light-text-color);
}

.page-deposit-withdrawal-deposit-methods__light-bg {
    background-color: var(--secondary-color);
    color: var(--dark-text-color);
}

.page-deposit-withdrawal-deposit-methods__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    padding-bottom: 40px;
    overflow: hidden;
}

.page-deposit-withdrawal-deposit-methods__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for aesthetic */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-deposit-withdrawal-deposit-methods__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 30px 20px;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text on dark hero */
    border-radius: 8px;
}

.page-deposit-withdrawal-deposit-methods__main-title {
    font-size: clamp(2em, 4vw, 2.8em);
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: bold;
}

.page-deposit-withdrawal-deposit-methods__description {
    font-size: 1.1em;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.page-deposit-withdrawal-deposit-methods__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-deposit-withdrawal-deposit-methods__btn-primary,
.page-deposit-withdrawal-deposit-methods__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-deposit-withdrawal-deposit-methods__btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-deposit-withdrawal-deposit-methods__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-deposit-withdrawal-deposit-methods__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-deposit-withdrawal-deposit-methods__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-deposit-withdrawal-deposit-methods__section {
    padding: 60px 0;
}

.page-deposit-withdrawal-deposit-methods__content-area,
.page-deposit-withdrawal-deposit-methods__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-deposit-withdrawal-deposit-methods__section-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
    color: inherit; /* Inherits from parent section */
    font-weight: bold;
}

.page-deposit-withdrawal-deposit-methods__sub-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: inherit;
}

.page-deposit-withdrawal-deposit-methods__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-deposit-methods__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-deposit-withdrawal-deposit-methods__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

.page-deposit-withdrawal-deposit-methods__method-card,
.page-deposit-withdrawal-deposit-methods__info-card {
    background-color: var(--secondary-color);
    color: var(--dark-text-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-deposit-methods__method-card:hover,
.page-deposit-withdrawal-deposit-methods__info-card:hover {
    transform: translateY(-5px);
}

.page-deposit-withdrawal-deposit-methods__method-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    display: block;
}

.page-deposit-withdrawal-deposit-methods__card-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: bold;
}

.page-deposit-withdrawal-deposit-methods__card-sub-title {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-text-color);
    font-weight: bold;
}

.page-deposit-withdrawal-deposit-methods__ordered-list {
    list-style: decimal inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-deposit-withdrawal-deposit-methods__process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-deposit-withdrawal-deposit-methods__step-card {
    background-color: var(--secondary-color);
    color: var(--dark-text-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
}

.page-deposit-withdrawal-deposit-methods__step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px auto;
}

.page-deposit-withdrawal-deposit-methods__step-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: bold;
}

.page-deposit-withdrawal-deposit-methods__center-button {
    text-align: center;
    margin-top: 40px;
}

.page-deposit-withdrawal-deposit-methods__faq-section {
    padding: 60px 0;
}

.page-deposit-withdrawal-deposit-methods__faq-list {
    margin-top: 30px;
}

.page-deposit-withdrawal-deposit-methods__faq-item {
    background-color: var(--dark-bg-color);
    color: var(--light-text-color);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-deposit-withdrawal-deposit-methods__faq-item[open] {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-deposit-withdrawal-deposit-methods__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    color: var(--light-text-color);
}

.page-deposit-withdrawal-deposit-methods__faq-question::-webkit-details-marker {
    display: none;
}

.page-deposit-withdrawal-deposit-methods__faq-qtext {
    flex-grow: 1;
}

.page-deposit-withdrawal-deposit-methods__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-deposit-withdrawal-deposit-methods__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.05em;
    color: var(--secondary-color);
}

.page-deposit-withdrawal-deposit-methods__answer p {
    margin-bottom: 10px;
}

.page-deposit-withdrawal-deposit-methods__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-deposit-withdrawal-deposit-methods__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em);
    }
    .page-deposit-withdrawal-deposit-methods__section-title {
        font-size: 2em;
    }
    .page-deposit-withdrawal-deposit-methods__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-deposit-withdrawal-deposit-methods {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-deposit-withdrawal-deposit-methods__hero-content {
        padding: 20px 15px;
        margin-top: 15px;
    }
    .page-deposit-withdrawal-deposit-methods__main-title {
        font-size: clamp(1.5em, 6vw, 2.2em);
    }
    .page-deposit-withdrawal-deposit-methods__description {
        font-size: 1em;
    }
    .page-deposit-withdrawal-deposit-methods__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-deposit-withdrawal-deposit-methods__btn-primary,
    .page-deposit-withdrawal-deposit-methods__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 10px 15px;
    }
    .page-deposit-withdrawal-deposit-methods__section {
        padding: 40px 0;
    }
    .page-deposit-withdrawal-deposit-methods__content-area,
    .page-deposit-withdrawal-deposit-methods__container {
        padding: 0 15px;
    }
    .page-deposit-withdrawal-deposit-methods__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-deposit-withdrawal-deposit-methods__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-deposit-withdrawal-deposit-methods__method-grid,
    .page-deposit-withdrawal-deposit-methods__info-grid,
    .page-deposit-withdrawal-deposit-methods__process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-deposit-withdrawal-deposit-methods__method-card,
    .page-deposit-withdrawal-deposit-methods__info-card,
    .page-deposit-withdrawal-deposit-methods__step-card {
        padding: 25px;
    }
    .page-deposit-withdrawal-deposit-methods__method-image {
        height: 200px;
    }
    .page-deposit-withdrawal-deposit-methods__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-deposit-withdrawal-deposit-methods__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-deposit-withdrawal-deposit-methods img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-deposit-withdrawal-deposit-methods__section,
    .page-deposit-withdrawal-deposit-methods__card,
    .page-deposit-withdrawal-deposit-methods__container,
    .page-deposit-withdrawal-deposit-methods__hero-section,
    .page-deposit-withdrawal-deposit-methods__hero-image-wrapper,
    .page-deposit-withdrawal-deposit-methods__hero-content,
    .page-deposit-withdrawal-deposit-methods__method-card,
    .page-deposit-withdrawal-deposit-methods__info-card,
    .page-deposit-withdrawal-deposit-methods__step-card,
    .page-deposit-withdrawal-deposit-methods__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-deposit-withdrawal-deposit-methods__hero-section {
      padding-top: 10px !important;
    }
}