/* style/deposit-withdrawal.css */
.page-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #000000;
    line-height: 1.6;
}

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

.page-deposit-withdrawal__hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #FFFFFF;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FFD700;
}

.page-deposit-withdrawal__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-deposit-withdrawal__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-deposit-withdrawal__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-deposit-withdrawal__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-deposit-withdrawal__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1.1);
}

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

.page-deposit-withdrawal__btn--primary {
    background-color: #FFD700;
    color: #000000;
    border: 2px solid #FFD700;
}

.page-deposit-withdrawal__btn--primary:hover {
    background-color: #DC143C;
    border-color: #DC143C;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-deposit-withdrawal__btn--secondary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-deposit-withdrawal__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-deposit-withdrawal__section:last-of-type {
    border-bottom: none;
}

.page-deposit-withdrawal__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-deposit-withdrawal__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #DC143C;
    border-radius: 2px;
}

.page-deposit-withdrawal__section-description {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit-withdrawal__section-description--emphasis {
    font-weight: bold;
    color: #FFD700;
    margin-top: 30px;
}

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

.page-deposit-withdrawal__feature-item, .page-deposit-withdrawal__method-item {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-deposit-withdrawal__feature-item:hover, .page-deposit-withdrawal__method-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.page-deposit-withdrawal__feature-title, .page-deposit-withdrawal__method-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}

.page-deposit-withdrawal__method-subtitle {
    font-size: 1.4em;
    color: #DC143C;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-deposit-withdrawal__feature-text, .page-deposit-withdrawal__method-text, .page-deposit-withdrawal__note {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 15px;
}

.page-deposit-withdrawal__note {
    font-style: italic;
    color: #DC143C;
    font-weight: bold;
}

.page-deposit-withdrawal__method-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #C0C0C0;
}

.page-deposit-withdrawal__method-list li {
    margin-bottom: 8px;
}

.page-deposit-withdrawal__image-full-width {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto 50px auto;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.2);
}

.page-deposit-withdrawal__image-centered {
    display: block;
    margin: 40px auto;
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.page-deposit-withdrawal__checklist {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-deposit-withdrawal__checklist li {
    background-color: #1A1A1A;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #FFD700;
}

.page-deposit-withdrawal__checklist-icon {
    font-size: 1.5em;
    color: #FFD700;
    margin-right: 15px;
    line-height: 1;
}

.page-deposit-withdrawal__checklist li strong {
    color: #FFD700;
}

.page-deposit-withdrawal__faq-item {
    background-color: #1A1A1A;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #DC143C;
}

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

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

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

.page-deposit-withdrawal__faq-answer {
    font-size: 1em;
    color: #B0B0B0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-left: 10px;
}

.page-deposit-withdrawal__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-deposit-withdrawal__cta-content {
    text-align: center;
    padding: 50px 20px;
    background-color: #1A1A1A;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 2px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-deposit-withdrawal__cta-description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit-withdrawal__cta-small-text {
    margin-top: 30px;
    font-size: 0.9em;
    color: #C0C0C0;
}

.page-deposit-withdrawal__link {
    color: #DC143C;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-deposit-withdrawal__image-support-icon {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-deposit-withdrawal__hero-title {
        font-size: 2.8em;
    }
    .page-deposit-withdrawal__section-title {
        font-size: 2.2em;
    }
    .page-deposit-withdrawal__features-grid, .page-deposit-withdrawal__method-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-deposit-withdrawal__hero {
        padding: 60px 0;
    }
    .page-deposit-withdrawal__hero-title {
        font-size: 2.2em;
    }
    .page-deposit-withdrawal__hero-subtitle {
        font-size: 1.1em;
    }
    .page-deposit-withdrawal__section {
        padding: 40px 0;
    }
    .page-deposit-withdrawal__section-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal__section-description {
        font-size: 0.95em;
    }
    .page-deposit-withdrawal__feature-title, .page-deposit-withdrawal__method-title {
        font-size: 1.5em;
    }
    .page-deposit-withdrawal__method-subtitle {
        font-size: 1.2em;
    }
    .page-deposit-withdrawal__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-deposit-withdrawal__cta-title {
        font-size: 2.2em;
    }
    .page-deposit-withdrawal__cta-description {
        font-size: 1em;
    }
    .page-deposit-withdrawal__faq-question {
        font-size: 1.3em;
    }
    .page-deposit-withdrawal__checklist li {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal__hero {
        padding: 40px 0;
    }
    .page-deposit-withdrawal__hero-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal__hero-subtitle {
        font-size: 0.9em;
    }
    .page-deposit-withdrawal__section {
        padding: 30px 0;
    }
    .page-deposit-withdrawal__section-title {
        font-size: 1.5em;
    }
    .page-deposit-withdrawal__features-grid, .page-deposit-withdrawal__method-grid {
        grid-template-columns: 1fr;
    }
    .page-deposit-withdrawal__cta-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal__cta-description {
        font-size: 0.9em;
    }
    .page-deposit-withdrawal__faq-question {
        font-size: 1.1em;
    }
}