/* style/support-deposit-withdrawal.css */

/* Base Styles for the page content */
.page-support-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
}

.page-support-deposit-withdrawal__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-support-deposit-withdrawal__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a60 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

.page-support-deposit-withdrawal__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support-deposit-withdrawal__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

/* General Section Styles */
.page-support-deposit-withdrawal__section {
    padding: 60px 0;
    background-color: #1A202C;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-support-deposit-withdrawal__section:nth-of-type(even) {
    background-color: #2a3340;
}

.page-support-deposit-withdrawal__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-support-deposit-withdrawal__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-support-deposit-withdrawal__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #cccccc;
}

/* Method Cards (Deposit/Withdrawal) */
.page-support-deposit-withdrawal__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-support-deposit-withdrawal__method-card:hover {
    transform: translateY(-5px);
    background-color: #3d4a5c;
}

.page-support-deposit-withdrawal__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-support-deposit-withdrawal__method-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support-deposit-withdrawal__method-text {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.page-support-deposit-withdrawal__method-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #cccccc;
}

.page-support-deposit-withdrawal__method-card ul li {
    margin-bottom: 8px;
    font-size: 0.95em;
}

.page-support-deposit-withdrawal__method-card ul li strong {
    color: #FFD700;
}

/* Step-by-Step Guide */
.page-support-deposit-withdrawal__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-support-deposit-withdrawal__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #2a3340;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-support-deposit-withdrawal__step-number {
    background-color: #FFD700;
    color: #1A202C;
    font-size: 2.5em;
    font-weight: bold;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    position: absolute;
    top: -35px;
}

.page-support-deposit-withdrawal__step-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
    margin-top: 50px; /* Space for step number */
}

.page-support-deposit-withdrawal__step-text {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 25px;
    max-width: 700px;
}

.page-support-deposit-withdrawal__step-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-support-deposit-withdrawal__step-text a:hover {
    text-decoration: underline;
}

.page-support-deposit-withdrawal__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-support-deposit-withdrawal__note {
    font-size: 1em;
    color: #FFD700;
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #3a4a60;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
}

/* FAQ Section */
.page-support-deposit-withdrawal__faq-list {
    margin-top: 40px;
}

.page-support-deposit-withdrawal__faq-item {
    background-color: #2a3340;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-support-deposit-withdrawal__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-support-deposit-withdrawal__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.page-support-deposit-withdrawal__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-support-deposit-withdrawal__faq-answer {
    font-size: 1em;
    color: #e0e0e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    padding-top: 0;
}

.page-support-deposit-withdrawal__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

.page-support-deposit-withdrawal__faq-answer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-support-deposit-withdrawal__faq-answer a:hover {
    text-decoration: underline;
}

/* Tips Section */
.page-support-deposit-withdrawal__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-support-deposit-withdrawal__tips-list li {
    background-color: #2a3340;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 45px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFD700;
    color: #e0e0e0;
    font-size: 1.05em;
}

.page-support-deposit-withdrawal__tips-list li::before {
    content: '✔️';
    position: absolute;
    left: 15px;
    top: 20px;
    color: #FFD700;
    font-size: 1.2em;
}

.page-support-deposit-withdrawal__tips-list li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-support-deposit-withdrawal__tips-list li a:hover {
    text-decoration: underline;
}

/* Why Choose Section */
.page-support-deposit-withdrawal__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-support-deposit-withdrawal__feature-card:hover {
    transform: translateY(-5px);
}

.page-support-deposit-withdrawal__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-support-deposit-withdrawal__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-support-deposit-withdrawal__feature-text {
    font-size: 1em;
    color: #e0e0e0;
}

.page-support-deposit-withdrawal__conclusion {
    font-size: 1.1em;
    text-align: center;
    margin-top: 50px;
    color: #cccccc;
    font-weight: bold;
}

/* Call to Action Section */
.page-support-deposit-withdrawal__cta {
    background: linear-gradient(135deg, #FFD700 0%, #b39700 100%); /* Gold gradient for CTA */
    padding: 80px 0;
    text-align: center;
    color: #1A202C; /* Dark text on gold background */
}

.page-support-deposit-withdrawal__cta-title {
    font-size: 2.8em;
    color: #1A202C;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-support-deposit-withdrawal__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #333333;
}

.page-support-deposit-withdrawal__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.page-support-deposit-withdrawal__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    text-align: center;
}

.page-support-deposit-withdrawal__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-support-deposit-withdrawal__btn--primary:hover {
    background-color: #e5c300;
    border-color: #e5c300;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-support-deposit-withdrawal__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-support-deposit-withdrawal__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-support-deposit-withdrawal__btn--tertiary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-support-deposit-withdrawal__btn--tertiary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-support-deposit-withdrawal__hero-title {
        font-size: 2.5em;
    }
    .page-support-deposit-withdrawal__section-title {
        font-size: 2em;
    }
    .page-support-deposit-withdrawal__method-grid,
    .page-support-deposit-withdrawal__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-support-deposit-withdrawal__step {
        padding: 30px;
    }
    .page-support-deposit-withdrawal__step-number {
        width: 60px;
        height: 60px;
        font-size: 2em;
        top: -30px;
    }
    .page-support-deposit-withdrawal__step-title {
        font-size: 1.8em;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-support-deposit-withdrawal__hero {
        padding: 80px 0;
    }
    .page-support-deposit-withdrawal__hero-title {
        font-size: 2em;
    }
    .page-support-deposit-withdrawal__hero-description {
        font-size: 1em;
    }
    .page-support-deposit-withdrawal__section {
        padding: 40px 0;
    }
    .page-support-deposit-withdrawal__section-title {
        font-size: 1.8em;
    }
    .page-support-deposit-withdrawal__step-by-step {
        gap: 30px;
    }
    .page-support-deposit-withdrawal__faq-question {
        font-size: 1.3em;
    }
    .page-support-deposit-withdrawal__cta-title {
        font-size: 2.2em;
    }
    .page-support-deposit-withdrawal__cta-description {
        font-size: 1em;
    }
    .page-support-deposit-withdrawal__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-support-deposit-withdrawal__btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .page-support-deposit-withdrawal__hero-title {
        font-size: 1.8em;
    }
    .page-support-deposit-withdrawal__section-title {
        font-size: 1.5em;
    }
    .page-support-deposit-withdrawal__method-card,
    .page-support-deposit-withdrawal__feature-card,
    .page-support-deposit-withdrawal__faq-item,
    .page-support-deposit-withdrawal__tips-list li {
        padding: 20px;
    }
    .page-support-deposit-withdrawal__method-title,
    .page-support-deposit-withdrawal__feature-title {
        font-size: 1.5em;
    }
    .page-support-deposit-withdrawal__step-title {
        font-size: 1.5em;
    }
}