/* style/deposit-withdrawal-troubleshooting.css */
.page-deposit-withdrawal-troubleshooting {
    font-family: Arial, sans-serif;
    color: #F8F8F8; /* Light gray for general text for contrast with dark background */
    background-color: #0A192F; /* Deep blue main background */
    line-height: 1.6;
}

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

.page-deposit-withdrawal-troubleshooting__hero {
    background: linear-gradient(135deg, #0A192F, #1A3A5F);
    padding: 100px 20px;
    text-align: center;
    color: #F8F8F8;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-troubleshooting__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:68gb,abstract_pattern,geometric_lines,dark_blue_gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-deposit-withdrawal-troubleshooting__hero-content {
    position: relative;
    z-index: 1;
}

.page-deposit-withdrawal-troubleshooting__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal-troubleshooting__subtitle {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit-withdrawal-troubleshooting__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Deep blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.page-deposit-withdrawal-troubleshooting__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-deposit-withdrawal-troubleshooting__cta-button--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border-color: #FFD700;
}

.page-deposit-withdrawal-troubleshooting__cta-button--secondary:hover {
    background-color: #1A3A5F;
    color: #FFD700;
    transform: translateY(-3px);
}

.page-deposit-withdrawal-troubleshooting__cta-button--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-deposit-withdrawal-troubleshooting__cta-button--outline:hover {
    background-color: #FFD700;
    color: #0A192F;
}

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

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

.page-deposit-withdrawal-troubleshooting__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-deposit-withdrawal-troubleshooting__intro p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #E0E0E0;
}

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

.page-deposit-withdrawal-troubleshooting__issue-card {
    background-color: #1A3A5F; /* Darker blue card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-deposit-withdrawal-troubleshooting__issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-deposit-withdrawal-troubleshooting__issue-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for issue titles */
    margin-bottom: 15px;
}

.page-deposit-withdrawal-troubleshooting__issue-card p {
    color: #F8F8F8;
    margin-bottom: 10px;
}

.page-deposit-withdrawal-troubleshooting__issue-card ul {
    list-style: disc inside;
    padding-left: 20px;
    color: #F8F8F8;
}

.page-deposit-withdrawal-troubleshooting__issue-card ul li {
    margin-bottom: 8px;
}

.page-deposit-withdrawal-troubleshooting__contact-support ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-deposit-withdrawal-troubleshooting__contact-support ul li {
    background-color: #1A3A5F;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    font-size: 1.1em;
    color: #F8F8F8;
    border-radius: 5px;
}

.page-deposit-withdrawal-troubleshooting__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-deposit-withdrawal-troubleshooting__faq-item {
    background-color: #1A3A5F;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.page-deposit-withdrawal-troubleshooting__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    padding: 20px;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-deposit-withdrawal-troubleshooting__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-troubleshooting__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-deposit-withdrawal-troubleshooting__faq-answer {
    color: #E0E0E0;
    padding: 0 20px 20px;
    display: none;
    font-size: 1em;
}

.page-deposit-withdrawal-troubleshooting__faq-question.active + .page-deposit-withdrawal-troubleshooting__faq-answer {
    display: block;
}

.page-deposit-withdrawal-troubleshooting__final-cta {
    text-align: center;
    padding: 80px 20px;
    background-color: #1A3A5F;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal-troubleshooting__final-cta-content .page-deposit-withdrawal-troubleshooting__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-troubleshooting__final-cta p {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

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

.page-deposit-withdrawal-troubleshooting__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

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

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

    .page-deposit-withdrawal-troubleshooting__subtitle {
        font-size: 1em;
    }

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

    .page-deposit-withdrawal-troubleshooting__issue-grid {
        grid-template-columns: 1fr;
    }

    .page-deposit-withdrawal-troubleshooting__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-deposit-withdrawal-troubleshooting__cta-button {
        width: 100%;
        max-width: 300px;
    }
}

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

    .page-deposit-withdrawal-troubleshooting__section-title {
        font-size: 1.8em;
    }

    .page-deposit-withdrawal-troubleshooting__hero {
        padding: 60px 15px;
    }

    .page-deposit-withdrawal-troubleshooting__section {
        padding: 40px 0;
    }
}