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

/* Biến CSS */
:root {
    --page-bg-color: #f8f9fa;
    --primary-color: #1A202C;
    --accent-color: #FFD700;
    --text-color-dark: #333;
    --text-color-light: #fff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.05);
}

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

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

.page-resources-fu88-deposit-withdrawal-methods__hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.page-resources-fu88-deposit-withdrawal-methods__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: var(--text-color-light);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-fu88-deposit-withdrawal-methods__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.page-resources-fu88-deposit-withdrawal-methods__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-fu88-deposit-withdrawal-methods__btn--secondary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--text-color-light);
    margin-left: 15px;
}

.page-resources-fu88-deposit-withdrawal-methods__btn--secondary:hover {
    background-color: #0d1016;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-resources-fu88-deposit-withdrawal-methods__content-section {
    padding: 40px 0;
}

.page-resources-fu88-deposit-withdrawal-methods__article-wrapper {
    background-color: var(--text-color-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.page-resources-fu88-deposit-withdrawal-methods__article p {
    margin-bottom: 1em;
    font-size: 1.05em;
    line-height: 1.7;
}

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

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

.page-resources-fu88-deposit-withdrawal-methods__list {
    list-style: disc inside;
    margin-bottom: 1em;
    padding-left: 20px;
}

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

.page-resources-fu88-deposit-withdrawal-methods__ordered-list {
    list-style: decimal inside;
    margin-bottom: 1em;
    padding-left: 20px;
}

.page-resources-fu88-deposit-withdrawal-methods__ordered-list li {
    margin-bottom: 0.8em;
}

.page-resources-fu88-deposit-withdrawal-methods__image-figure {
    margin: 30px 0;
    text-align: center;
}

.page-resources-fu88-deposit-withdrawal-methods__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-fu88-deposit-withdrawal-methods__image-caption {
    font-style: italic;
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

.page-resources-fu88-deposit-withdrawal-methods__cta-block {
    background-color: #f0f8ff;
    border-left: 5px solid var(--accent-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-resources-fu88-deposit-withdrawal-methods__cta-block p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-resources-fu88-deposit-withdrawal-methods__link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-fu88-deposit-withdrawal-methods__link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.page-resources-fu88-deposit-withdrawal-methods__faq {
    margin-top: 40px;
}

.page-resources-fu88-deposit-withdrawal-methods__faq-item {
    background-color: #fefefe;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 1px 5px var(--shadow-light);
}

.page-resources-fu88-deposit-withdrawal-methods__faq-question {
    font-size: 1.2em;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-resources-fu88-deposit-withdrawal-methods__faq-answer {
    font-size: 1em;
    color: var(--text-color-dark);
}

.page-resources-fu88-deposit-withdrawal-methods__cta-footer {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.page-resources-fu88-deposit-withdrawal-methods__return-link-wrapper {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
}

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

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

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

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

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

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

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

    .page-resources-fu88-deposit-withdrawal-methods__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }

    .page-resources-fu88-deposit-withdrawal-methods__cta-footer .page-resources-fu88-deposit-withdrawal-methods__btn {
        display: block;
        width: 80%;
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .page-resources-fu88-deposit-withdrawal-methods__title {
        font-size: 1.8em;
    }

    .page-resources-fu88-deposit-withdrawal-methods__hero {
        padding: 50px 0;
    }

    .page-resources-fu88-deposit-withdrawal-methods__article-wrapper {
        padding: 20px;
    }

    .page-resources-fu88-deposit-withdrawal-methods__list,
    .page-resources-fu88-deposit-withdrawal-methods__ordered-list {
        padding-left: 15px;
    }
}