/* style/resources-tx88-deposit-withdrawal-guide.css */
.page-resources-tx88-deposit-withdrawal-guide {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for main text on dark background */
    background-color: #0F1A2D; /* A slightly lighter dark blue for content background */
    line-height: 1.6;
}

.page-resources-tx88-deposit-withdrawal-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-resources-tx88-deposit-withdrawal-guide__hero-section {
    background: linear-gradient(135deg, #1A2B4C 0%, #0F1A2D 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.page-resources-tx88-deposit-withdrawal-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue]');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-resources-tx88-deposit-withdrawal-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    position: relative;
    z-index: 1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-resources-tx88-deposit-withdrawal-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #E0E0E0;
    position: relative;
    z-index: 1;
}

.page-resources-tx88-deposit-withdrawal-guide__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-resources-tx88-deposit-withdrawal-guide__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-resources-tx88-deposit-withdrawal-guide__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #1A2B4C; /* Dark blue */
    border: 2px solid #FFD700;
}

.page-resources-tx88-deposit-withdrawal-guide__btn--primary:hover {
    background-color: #E0B800;
    transform: translateY(-3px);
}

.page-resources-tx88-deposit-withdrawal-guide__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-resources-tx88-deposit-withdrawal-guide__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-resources-tx88-deposit-withdrawal-guide__btn--full-width {
    display: block;
    width: fit-content;
    margin: 30px auto;
    padding: 15px 40px;
    background-color: #FFD700;
    color: #1A2B4C;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-tx88-deposit-withdrawal-guide__btn--full-width:hover {
    background-color: #E0B800;
    transform: translateY(-3px);
}

.page-resources-tx88-deposit-withdrawal-guide__content-section {
    padding: 60px 0;
    background-color: #0F1A2D;
}

.page-resources-tx88-deposit-withdrawal-guide__article {
    background-color: #1A2B4C;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-tx88-deposit-withdrawal-guide__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-resources-tx88-deposit-withdrawal-guide__sub-section-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-section titles */
    margin-top: 35px;
    margin-bottom: 20px;
}

.page-resources-tx88-deposit-withdrawal-guide__article p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-resources-tx88-deposit-withdrawal-guide__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-resources-tx88-deposit-withdrawal-guide__list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    color: #E0E0E0;
}

.page-resources-tx88-deposit-withdrawal-guide__list li::before {
    content: '\2022'; /* Bullet point */
    color: #FFD700; /* Gold bullet */
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.page-resources-tx88-deposit-withdrawal-guide__list--bullets li::before {
    content: '\2022';
}

.page-resources-tx88-deposit-withdrawal-guide__list--checked li::before {
    content: '\2713'; /* Checkmark */
    color: #4CAF50; /* Green checkmark */
}

.page-resources-tx88-deposit-withdrawal-guide__list ol li::before {
    content: counter(item) '. ';
    counter-increment: item;
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.page-resources-tx88-deposit-withdrawal-guide__list ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.page-resources-tx88-deposit-withdrawal-guide__article-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-resources-tx88-deposit-withdrawal-guide__faq {
    margin-top: 40px;
}

.page-resources-tx88-deposit-withdrawal-guide__faq-item {
    background-color: #0F1A2D; /* Darker blue for FAQ items */
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.page-resources-tx88-deposit-withdrawal-guide__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-resources-tx88-deposit-withdrawal-guide__faq-answer {
    font-size: 1em;
    color: #CCCCCC;
}

.page-resources-tx88-deposit-withdrawal-guide__final-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #0F1A2D;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-tx88-deposit-withdrawal-guide__final-cta p {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 30px;
}

.page-resources-tx88-deposit-withdrawal-guide .highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-resources-tx88-deposit-withdrawal-guide a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources-tx88-deposit-withdrawal-guide a:hover {
    color: #E0B800;
    text-decoration: underline;
}

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

    .page-resources-tx88-deposit-withdrawal-guide__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-tx88-deposit-withdrawal-guide__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-tx88-deposit-withdrawal-guide__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-tx88-deposit-withdrawal-guide__section-title {
        font-size: 2em;
    }

    .page-resources-tx88-deposit-withdrawal-guide__sub-section-title {
        font-size: 1.5em;
    }

    .page-resources-tx88-deposit-withdrawal-guide__article {
        padding: 25px;
    }

    .page-resources-tx88-deposit-withdrawal-guide__article p,
    .page-resources-tx88-deposit-withdrawal-guide__list li,
    .page-resources-tx88-deposit-withdrawal-guide__faq-question,
    .page-resources-tx88-deposit-withdrawal-guide__faq-answer {
        font-size: 0.95em;
    }

    .page-resources-tx88-deposit-withdrawal-guide__final-cta p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-resources-tx88-deposit-withdrawal-guide__hero-title {
        font-size: 2em;
    }

    .page-resources-tx88-deposit-withdrawal-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-tx88-deposit-withdrawal-guide__hero-cta-group {
        gap: 10px;
    }

    .page-resources-tx88-deposit-withdrawal-guide__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-resources-tx88-deposit-withdrawal-guide__section-title {
        font-size: 1.8em;
    }
}