/* style/resources-mm99-deposit-withdrawal-methods.css */

:root {
    --mm99-primary-color: #0A1931;
    --mm99-secondary-color: #FFD700;
    --mm99-text-dark: #0A1931;
    --mm99-text-light: #FFFFFF;
    --mm99-background-light: #F0F2F5;
    --mm99-background-dark: #1A2B42;
    --mm99-accent-gold-light: #FFEB3B;
    --mm99-button-hover-dark: #071221;
    --mm99-button-hover-gold: #E6C200;
}

.page-resources-mm99-deposit-withdrawal-methods {
    font-family: 'Arial', sans-serif;
    color: var(--mm99-text-dark);
    line-height: 1.6;
}

.page-resources-mm99-deposit-withdrawal-methods__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-mm99-deposit-withdrawal-methods__hero-section {
    background: linear-gradient(135deg, var(--mm99-primary-color), var(--mm99-background-dark));
    color: var(--mm99-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-resources-mm99-deposit-withdrawal-methods__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--mm99-secondary-color);
    line-height: 1.2;
}

.page-resources-mm99-deposit-withdrawal-methods__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-resources-mm99-deposit-withdrawal-methods__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1em;
    cursor: pointer;
}

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

.page-resources-mm99-deposit-withdrawal-methods__btn--primary:hover {
    background-color: var(--mm99-button-hover-gold);
    border-color: var(--mm99-button-hover-gold);
    transform: translateY(-2px);
}

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

.page-resources-mm99-deposit-withdrawal-methods__btn--secondary:hover {
    background-color: var(--mm99-button-hover-dark);
    border-color: var(--mm99-button-hover-gold);
    transform: translateY(-2px);
}

.page-resources-mm99-deposit-withdrawal-methods__btn--highlight {
    background-color: var(--mm99-secondary-color);
    color: var(--mm99-primary-color);
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-mm99-deposit-withdrawal-methods__btn--highlight:hover {
    background-color: var(--mm99-button-hover-gold);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-mm99-deposit-withdrawal-methods__btn--lg {
    font-size: 1.3em;
    padding: 15px 35px;
    border-radius: 10px;
}

.page-resources-mm99-deposit-withdrawal-methods__content-wrapper {
    padding: 60px 0;
    background-color: var(--mm99-background-light);
}

.page-resources-mm99-deposit-withdrawal-methods__article-content {
    background-color: var(--mm99-text-light);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 800px; /* Content width for readability */
}

.page-resources-mm99-deposit-withdrawal-methods__heading {
    font-size: 2em;
    color: var(--mm99-primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--mm99-secondary-color);
    padding-bottom: 10px;
}

.page-resources-mm99-deposit-withdrawal-methods__sub-heading {
    font-size: 1.5em;
    color: var(--mm99-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.page-resources-mm99-deposit-withdrawal-methods__sub-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 80%;
    background-color: var(--mm99-secondary-color);
    border-radius: 3px;
}

p {
    margin-bottom: 1em;
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--mm99-text-dark);
}

.page-resources-mm99-deposit-withdrawal-methods__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-mm99-deposit-withdrawal-methods__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 1em;
    color: var(--mm99-text-dark);
}

.page-resources-mm99-deposit-withdrawal-methods__list li {
    margin-bottom: 0.5em;
    font-size: 1em;
}

.page-resources-mm99-deposit-withdrawal-methods__list ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-top: 10px;
}

.page-resources-mm99-deposit-withdrawal-methods__list ol li {
    margin-bottom: 0.5em;
}

.page-resources-mm99-deposit-withdrawal-methods__quote {
    background-color: var(--mm99-background-light);
    border-left: 5px solid var(--mm99-secondary-color);
    padding: 20px 25px;
    margin: 40px 0;
    font-style: italic;
    color: var(--mm99-primary-color);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-mm99-deposit-withdrawal-methods__quote p {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.5;
    color: var(--mm99-primary-color);
}

.page-resources-mm99-deposit-withdrawal-methods__related-resources {
    background-color: var(--mm99-background-dark);
    color: var(--mm99-text-light);
    padding: 60px 0;
    text-align: center;
}

.page-resources-mm99-deposit-withdrawal-methods__related-resources .page-resources-mm99-deposit-withdrawal-methods__heading {
    color: var(--mm99-secondary-color);
    border-bottom-color: var(--mm99-text-light);
}

.page-resources-mm99-deposit-withdrawal-methods__resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-mm99-deposit-withdrawal-methods__resource-card {
    background-color: var(--mm99-primary-color);
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-mm99-deposit-withdrawal-methods__resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-mm99-deposit-withdrawal-methods__card-title {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-resources-mm99-deposit-withdrawal-methods__card-title a {
    color: var(--mm99-secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-mm99-deposit-withdrawal-methods__card-title a:hover {
    color: var(--mm99-accent-gold-light);
    text-decoration: underline;
}

.page-resources-mm99-deposit-withdrawal-methods__resource-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
}

.page-resources-mm99-deposit-withdrawal-methods__return-link {
    margin-top: 50px;
}

.page-resources-mm99-deposit-withdrawal-methods__return-link a {
    color: var(--mm99-secondary-color);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-mm99-deposit-withdrawal-methods__return-link a:hover {
    color: var(--mm99-accent-gold-light);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-resources-mm99-deposit-withdrawal-methods__title {
        font-size: 2em;
    }

    .page-resources-mm99-deposit-withdrawal-methods__subtitle {
        font-size: 1em;
    }

    .page-resources-mm99-deposit-withdrawal-methods__heading {
        font-size: 1.8em;
    }

    .page-resources-mm99-deposit-withdrawal-methods__sub-heading {
        font-size: 1.3em;
    }

    .page-resources-mm99-deposit-withdrawal-methods__article-content {
        padding: 25px;
    }

    .page-resources-mm99-deposit-withdrawal-methods__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-resources-mm99-deposit-withdrawal-methods__btn--lg {
        font-size: 1.1em;
        padding: 12px 25px;
    }

    .page-resources-mm99-deposit-withdrawal-methods__quote {
        padding: 15px 20px;
    }

    .page-resources-mm99-deposit-withdrawal-methods__resource-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-resources-mm99-deposit-withdrawal-methods__hero-section {
        padding: 60px 0;
    }

    .page-resources-mm99-deposit-withdrawal-methods__title {
        font-size: 1.8em;
    }

    .page-resources-mm99-deposit-withdrawal-methods__heading {
        font-size: 1.5em;
    }

    .page-resources-mm99-deposit-withdrawal-methods__sub-heading {
        font-size: 1.2em;
    }

    .page-resources-mm99-deposit-withdrawal-methods__article-content {
        padding: 20px;
    }
}