/* style/withdrawal-guide-e-wallet-options.css */
.page-withdrawal-guide-e-wallet-options {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark background */
    background-color: #1A2A3A; /* Main background color */
    line-height: 1.6;
}

.page-withdrawal-guide-e-wallet-options__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-withdrawal-guide-e-wallet-options__hero {
    background: linear-gradient(135deg, #FFD700, #1A2A3A);
    padding: 100px 0;
    text-align: center;
    color: #1A2A3A;
}

.page-withdrawal-guide-e-wallet-options__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #1A2A3A;
    font-weight: bold;
}

.page-withdrawal-guide-e-wallet-options__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333333;
}

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

.page-withdrawal-guide-e-wallet-options__btn--primary {
    background-color: #FFD700;
    color: #1A2A3A;
}

.page-withdrawal-guide-e-wallet-options__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-withdrawal-guide-e-wallet-options__btn--secondary {
    background-color: #1A2A3A;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-withdrawal-guide-e-wallet-options__btn--secondary:hover {
    background-color: #3a4a5a;
    color: #FFD700;
    transform: translateY(-2px);
}

.page-withdrawal-guide-e-wallet-options__section {
    padding: 60px 0;
}

.page-withdrawal-guide-e-wallet-options__section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
    color: #FFD700;
    font-weight: bold;
}

.page-withdrawal-guide-e-wallet-options__text-block {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-withdrawal-guide-e-wallet-options__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-withdrawal-guide-e-wallet-options__feature-card,
.page-withdrawal-guide-e-wallet-options__wallet-card {
    background-color: #2A3A4A;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-withdrawal-guide-e-wallet-options__feature-card:hover,
.page-withdrawal-guide-e-wallet-options__wallet-card:hover {
    transform: translateY(-5px);
}

.page-withdrawal-guide-e-wallet-options__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-withdrawal-guide-e-wallet-options__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-withdrawal-guide-e-wallet-options__card-description {
    font-size: 1em;
    color: #E0E0E0;
}

.page-withdrawal-guide-e-wallet-options__wallet-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.page-withdrawal-guide-e-wallet-options__list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
    color: #E0E0E0;
}

.page-withdrawal-guide-e-wallet-options__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-withdrawal-guide-e-wallet-options__list--compact li {
    font-size: 0.95em;
}

.page-withdrawal-guide-e-wallet-options__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    line-height: 1.2;
}

.page-withdrawal-guide-e-wallet-options__list--bullet li::before {
    content: '•';
    color: #FFD700;
    font-size: 1.5em;
    top: -3px;
}

.page-withdrawal-guide-e-wallet-options__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.page-withdrawal-guide-e-wallet-options__step-item {
    background-color: #2A3A4A;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.page-withdrawal-guide-e-wallet-options__step-number {
    background-color: #FFD700;
    color: #1A2A3A;
    font-size: 1.8em;
    font-weight: bold;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 20px auto;
    border: 4px solid #1A2A3A;
}

.page-withdrawal-guide-e-wallet-options__step-item .page-withdrawal-guide-e-wallet-options__card-title {
    margin-top: 15px;
}

.page-withdrawal-guide-e-wallet-options__step-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-withdrawal-guide-e-wallet-options__note {
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    color: #BBBBBB;
    font-size: 0.95em;
}

.page-withdrawal-guide-e-wallet-options__faq-item {
    background-color: #2A3A4A;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-withdrawal-guide-e-wallet-options__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.page-withdrawal-guide-e-wallet-options__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-withdrawal-guide-e-wallet-options__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-withdrawal-guide-e-wallet-options__faq-answer {
    font-size: 1em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-withdrawal-guide-e-wallet-options__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-withdrawal-guide-e-wallet-options__image--full-width {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-withdrawal-guide-e-wallet-options__image--center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-withdrawal-guide-e-wallet-options__cta {
    background-color: #2A3A4A;
    padding: 80px 0;
    text-align: center;
}

.page-withdrawal-guide-e-wallet-options__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-withdrawal-guide-e-wallet-options__hero-title {
        font-size: 2.2em;
    }
    .page-withdrawal-guide-e-wallet-options__section-title {
        font-size: 1.8em;
    }
    .page-withdrawal-guide-e-wallet-options__grid,
    .page-withdrawal-guide-e-wallet-options__steps {
        grid-template-columns: 1fr;
    }
    .page-withdrawal-guide-e-wallet-options__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-withdrawal-guide-e-wallet-options__hero {
        padding: 60px 0;
    }
    .page-withdrawal-guide-e-wallet-options__hero-title {
        font-size: 1.8em;
    }
    .page-withdrawal-guide-e-wallet-options__hero-subtitle {
        font-size: 1em;
    }
    .page-withdrawal-guide-e-wallet-options__section {
        padding: 40px 0;
    }
    .page-withdrawal-guide-e-wallet-options__section-title {
        font-size: 1.6em;
    }
    .page-withdrawal-guide-e-wallet-options__feature-card,
    .page-withdrawal-guide-e-wallet-options__wallet-card,
    .page-withdrawal-guide-e-wallet-options__step-item,
    .page-withdrawal-guide-e-wallet-options__faq-item {
        padding: 20px;
    }
    .page-withdrawal-guide-e-wallet-options__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5em;
        margin: -50px auto 15px auto;
    }
    .page-withdrawal-guide-e-wallet-options__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-withdrawal-guide-e-wallet-options__btn {
        width: 80%;
        max-width: 300px;
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .page-withdrawal-guide-e-wallet-options__container {
        padding: 0 15px;
    }
    .page-withdrawal-guide-e-wallet-options__hero-title {
        font-size: 1.5em;
    }
    .page-withdrawal-guide-e-wallet-options__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-withdrawal-guide-e-wallet-options__card-title {
        font-size: 1.3em;
    }
    .page-withdrawal-guide-e-wallet-options__faq-question {
        font-size: 1.1em;
    }
}