/* style/deposit-withdrawal.css */

/* Variables for consistency */
:root {
    --nohu78-dark: #1A202C;
    --nohu78-gold: #FFD700;
    --nohu78-light-gray: #F7FAFC;
    --nohu78-medium-gray: #CBD5E0;
    --nohu78-text-color: #E2E8F0; /* Light text on dark background */
    --nohu78-dark-text: #1A202C; /* Dark text on light background */
}

.page-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    color: var(--nohu78-text-color);
    background-color: var(--nohu78-dark);
    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, var(--nohu78-dark), #333d4f);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid var(--nohu78-gold);
}

.page-deposit-withdrawal__hero-title {
    font-size: 3.2em;
    color: var(--nohu78-gold);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.page-deposit-withdrawal__hero-subtitle {
    font-size: 1.3em;
    color: var(--nohu78-text-color);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.page-deposit-withdrawal__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-deposit-withdrawal__button {
    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;
    border: none;
    text-align: center;
}

.page-deposit-withdrawal__button--primary {
    background-color: var(--nohu78-gold);
    color: var(--nohu78-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-deposit-withdrawal__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-deposit-withdrawal__button--secondary {
    background-color: transparent;
    color: var(--nohu78-gold);
    border: 2px solid var(--nohu78-gold);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-deposit-withdrawal__button--secondary:hover {
    background-color: var(--nohu78-gold);
    color: var(--nohu78-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-deposit-withdrawal__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-top: 15px;
}

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

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

.page-deposit-withdrawal__section-title {
    font-size: 2.5em;
    color: var(--nohu78-gold);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-deposit-withdrawal__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--nohu78-medium-gray);
}

.page-deposit-withdrawal__subsection-title {
    font-size: 1.8em;
    color: var(--nohu78-gold);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
    font-weight: 600;
    border-left: 5px solid var(--nohu78-gold);
    padding-left: 15px;
}

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

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

.page-deposit-withdrawal__text-content {
    flex: 1;
    font-size: 1.05em;
    color: var(--nohu78-light-gray);
}

.page-deposit-withdrawal__text-content p {
    margin-bottom: 15px;
}

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

.page-deposit-withdrawal__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-deposit-withdrawal__method-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-deposit-withdrawal__method-item {
    background-color: #2D3748;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-deposit-withdrawal__method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px var(--nohu78-gold));
}

.page-deposit-withdrawal__method-name {
    font-size: 1.4em;
    color: var(--nohu78-gold);
    margin-bottom: 10px;
}

.page-deposit-withdrawal__method-desc {
    font-size: 0.95em;
    color: var(--nohu78-medium-gray);
}

.page-deposit-withdrawal__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-top: 30px;
}

.page-deposit-withdrawal__step-list li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    font-size: 1.05em;
    color: var(--nohu78-light-gray);
}

.page-deposit-withdrawal__step-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--nohu78-gold);
    color: var(--nohu78-dark);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.page-deposit-withdrawal__note {
    background-color: #2D3748;
    border-left: 5px solid var(--nohu78-gold);
    padding: 20px;
    margin-top: 40px;
    border-radius: 8px;
    font-style: italic;
    color: var(--nohu78-medium-gray);
}

.page-deposit-withdrawal__cta-box {
    background-color: #2D3748;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-deposit-withdrawal__cta-box p {
    font-size: 1.5em;
    color: var(--nohu78-gold);
    margin-bottom: 25px;
    font-weight: 600;
}

.page-deposit-withdrawal__inline-link {
    color: var(--nohu78-gold);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

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

.page-deposit-withdrawal__faq-item {
    background-color: #2D3748;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-deposit-withdrawal__faq-question {
    font-size: 1.3em;
    color: var(--nohu78-gold);
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.page-deposit-withdrawal__faq-question::after {
    content: '+';
    font-size: 1.5em;
    line-height: 1;
    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: var(--nohu78-medium-gray);
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    display: none;
}

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

.page-deposit-withdrawal__related-pages {
    background-color: #2D3748;
    padding: 80px 0;
}

.page-deposit-withdrawal__related-pages .page-deposit-withdrawal__section-title,
.page-deposit-withdrawal__related-pages .page-deposit-withdrawal__section-description {
    color: var(--nohu78-gold);
}

.page-deposit-withdrawal__related-pages .page-deposit-withdrawal__section-description {
    color: var(--nohu78-light-gray);
}

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

.page-deposit-withdrawal__detail-item {
    background-color: var(--nohu78-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-deposit-withdrawal__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.page-deposit-withdrawal__detail-title {
    font-size: 1.5em;
    color: var(--nohu78-gold);
    margin-bottom: 15px;
}

.page-deposit-withdrawal__detail-title a {
    color: var(--nohu78-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal__detail-title a:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-deposit-withdrawal__detail-desc {
    font-size: 1em;
    color: var(--nohu78-medium-gray);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-deposit-withdrawal__hero-title {
        font-size: 2.5em;
    }

    .page-deposit-withdrawal__hero-subtitle {
        font-size: 1.1em;
    }

    .page-deposit-withdrawal__section-title {
        font-size: 2em;
    }

    .page-deposit-withdrawal__subsection-title {
        font-size: 1.5em;
    }

    .page-deposit-withdrawal__content-wrapper {
        flex-direction: column;
    }

    .page-deposit-withdrawal__content-wrapper--reverse {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .page-deposit-withdrawal__hero {
        padding: 80px 0 60px;
    }

    .page-deposit-withdrawal__hero-title {
        font-size: 2em;
    }

    .page-deposit-withdrawal__hero-subtitle {
        font-size: 1em;
    }

    .page-deposit-withdrawal__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-deposit-withdrawal__button {
        padding: 12px 25px;
        font-size: 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;
        margin-bottom: 30px;
    }

    .page-deposit-withdrawal__subsection-title {
        font-size: 1.3em;
    }

    .page-deposit-withdrawal__method-list {
        grid-template-columns: 1fr;
    }

    .page-deposit-withdrawal__step-list li {
        padding-left: 40px;
        font-size: 0.95em;
    }

    .page-deposit-withdrawal__step-list li::before {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }

    .page-deposit-withdrawal__cta-box {
        padding: 30px;
    }

    .page-deposit-withdrawal__cta-box p {
        font-size: 1.2em;
    }

    .page-deposit-withdrawal__faq-question {
        font-size: 1.1em;
    }

    .page-deposit-withdrawal__detail-list {
        grid-template-columns: 1fr;
    }
}