/* style/deposit-withdrawal-deposit-methods-detail.css */
.page-deposit-withdrawal-deposit-methods-detail {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for body text on dark background */
    background-color: #0A192F; /* Main dark blue background */
}

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

.page-deposit-withdrawal-deposit-methods-detail__hero {
    background: linear-gradient(135deg, #0A192F 0%, #334768 100%); /* Dark blue to slightly lighter blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-deposit-methods-detail__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 25, 47, 0) 70%);
    animation: rotateGradient 15s linear infinite;
    z-index: 0;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-deposit-withdrawal-deposit-methods-detail__hero > * {
    position: relative;
    z-index: 1;
}

.page-deposit-withdrawal-deposit-methods-detail__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal-deposit-methods-detail__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #E0E0E0; /* Light gray */
}

.page-deposit-withdrawal-deposit-methods-detail__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
}

.page-deposit-withdrawal-deposit-methods-detail__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
}

.page-deposit-withdrawal-deposit-methods-detail__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-deposit-withdrawal-deposit-methods-detail__section:last-of-type {
    border-bottom: none;
}

.page-deposit-withdrawal-deposit-methods-detail__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-deposit-withdrawal-deposit-methods-detail__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-deposit-withdrawal-deposit-methods-detail__introduction p {
    font-size: 1.1em;
    text-align: justify;
    margin-bottom: 20px;
    color: #C0C0C0; /* Lighter gray for readability */
}

.page-deposit-withdrawal-deposit-methods-detail__introduction p strong {
    color: #FFD700;
}

.page-deposit-withdrawal-deposit-methods-detail__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-deposit-withdrawal-deposit-methods-detail__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-deposit-withdrawal-deposit-methods-detail__methods {
    background-color: #122A42; /* Slightly lighter dark blue */
}

.page-deposit-withdrawal-deposit-methods-detail__method-card {
    background-color: #0A192F;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-deposit-methods-detail__method-card:hover {
    transform: translateY(-5px);
}

.page-deposit-withdrawal-deposit-methods-detail__method-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    text-align: center;
}

.page-deposit-withdrawal-deposit-methods-detail__method-subtitle {
    font-size: 1.4em;
    color: #FFD700; /* Gold */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-deposit-methods-detail__method-card p {
    color: #C0C0C0;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-deposit-methods-detail__method-card p strong {
    color: #FFD700;
}

.page-deposit-withdrawal-deposit-methods-detail__steps {
    list-style-type: decimal;
    margin-left: 20px;
    color: #C0C0C0;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-deposit-methods-detail__steps li {
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-deposit-withdrawal-deposit-methods-detail__steps li a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal-deposit-methods-detail__steps li a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-deposit-withdrawal-deposit-methods-detail__button {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-deposit-withdrawal-deposit-methods-detail__button:hover {
    background-color: #e6c200;
}

.page-deposit-withdrawal-deposit-methods-detail__faq {
    background-color: #0A192F;
}

.page-deposit-withdrawal-deposit-methods-detail__faq-item {
    background-color: #122A42;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-deposit-methods-detail__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-deposit-withdrawal-deposit-methods-detail__faq-question::after {
    content: '+';
    font-size: 1.5em;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

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

.page-deposit-withdrawal-deposit-methods-detail__faq-answer {
    font-size: 1.05em;
    color: #C0C0C0;
    display: none; /* Hidden by default, shown by JS */
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    margin-top: 10px;
}

.page-deposit-withdrawal-deposit-methods-detail__faq-answer a {
    color: #FFD700;
    text-decoration: none;
}

.page-deposit-withdrawal-deposit-methods-detail__faq-answer a:hover {
    text-decoration: underline;
}

.page-deposit-withdrawal-deposit-methods-detail__security-info {
    background-color: #122A42;
}

.page-deposit-withdrawal-deposit-methods-detail__security-list {
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
    color: #E0E0E0;
}

.page-deposit-withdrawal-deposit-methods-detail__security-list li {
    background-color: #0A192F;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 50px;
}

.page-deposit-withdrawal-deposit-methods-detail__security-list li::before {
    content: '✅';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
}

.page-deposit-withdrawal-deposit-methods-detail__security-list li strong {
    color: #FFD700;
    font-size: 1.1em;
}

.page-deposit-withdrawal-deposit-methods-detail__call-to-action {
    background: linear-gradient(135deg, #0A192F 0%, #334768 100%); /* Dark blue to slightly lighter blue gradient */
    text-align: center;
    padding: 80px 0;
}

.page-deposit-withdrawal-deposit-methods-detail__cta-content p {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

.page-deposit-withdrawal-deposit-methods-detail__cta-content p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-deposit-withdrawal-deposit-methods-detail__cta-content p a:hover {
    text-decoration: underline;
}

.page-deposit-withdrawal-deposit-methods-detail__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-deposit-withdrawal-deposit-methods-detail__cta-button--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-deposit-withdrawal-deposit-methods-detail__cta-button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-deposit-withdrawal-deposit-methods-detail__cta-button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-deposit-withdrawal-deposit-methods-detail__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-deposit-withdrawal-deposit-methods-detail__title {
        font-size: 2.5em;
    }

    .page-deposit-withdrawal-deposit-methods-detail__subtitle {
        font-size: 1.2em;
    }

    .page-deposit-withdrawal-deposit-methods-detail__section-title {
        font-size: 2em;
    }

    .page-deposit-withdrawal-deposit-methods-detail__method-title {
        font-size: 1.5em;
    }

    .page-deposit-withdrawal-deposit-methods-detail__method-subtitle {
        font-size: 1.2em;
    }

    .page-deposit-withdrawal-deposit-methods-detail__faq-question {
        font-size: 1.1em;
    }

    .page-deposit-withdrawal-deposit-methods-detail__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-deposit-withdrawal-deposit-methods-detail__cta-button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-deposit-methods-detail__title {
        font-size: 2em;
    }

    .page-deposit-withdrawal-deposit-methods-detail__subtitle {
        font-size: 1em;
    }

    .page-deposit-withdrawal-deposit-methods-detail__cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-deposit-withdrawal-deposit-methods-detail__section {
        padding: 40px 0;
    }

    .page-deposit-withdrawal-deposit-methods-detail__method-card {
        padding: 20px;
    }

    .page-deposit-withdrawal-deposit-methods-detail__faq-item, .page-deposit-withdrawal-deposit-methods-detail__security-list li {
        padding: 15px;
        padding-left: 45px;
    }

    .page-deposit-withdrawal-deposit-methods-detail__security-list li::before {
        left: 10px;
        font-size: 1.2em;
    }
}