/* style/faq-deposit-withdrawal.css */
:root {
    --primary-color: #FFD700;
    --secondary-color: #1A202C;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark-card: rgba(255, 255, 255, 0.1);
    --border-light: #e0e0e0;
}

.page-faq-deposit-withdrawal {
    background-color: var(--secondary-color); /* Body background is dark, so page content will have light text */
    color: var(--text-light);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-faq-deposit-withdrawal__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-faq-deposit-withdrawal__hero-section {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    box-sizing: border-box;
}

.page-faq-deposit-withdrawal__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-faq-deposit-withdrawal__hero-section > .page-faq-deposit-withdrawal__container {
    position: relative;
    z-index: 2;
}

.page-faq-deposit-withdrawal__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-faq-deposit-withdrawal__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq-deposit-withdrawal__btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color); /* Dark text on gold button */
    padding: 12px 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: none;
    cursor: pointer;
    box-sizing: border-box;
}

.page-faq-deposit-withdrawal__btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-faq-deposit-withdrawal__btn-primary--center {
    display: block;
    margin: 30px auto 0 auto;
    max-width: 300px;
}

.page-faq-deposit-withdrawal__intro-section,
.page-faq-deposit-withdrawal__faq-section,
.page-faq-deposit-withdrawal__video-section,
.page-faq-deposit-withdrawal__cta-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--text-light);
}

.page-faq-deposit-withdrawal__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-faq-deposit-withdrawal__section-title--spacing {
    margin-top: 60px;
}

.page-faq-deposit-withdrawal__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-faq-deposit-withdrawal__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq-deposit-withdrawal__faq-item {
    background-color: var(--bg-dark-card); /* Slightly lighter dark background for cards */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-faq-deposit-withdrawal__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05); /* Very subtle lighter background for question */
    transition: background-color 0.3s ease;
    color: var(--text-light);
}

.page-faq-deposit-withdrawal__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-faq-deposit-withdrawal__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.page-faq-deposit-withdrawal__faq-item.active .page-faq-deposit-withdrawal__faq-toggle {
    transform: rotate(45deg);
}

.page-faq-deposit-withdrawal__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
}

.page-faq-deposit-withdrawal__faq-item.active .page-faq-deposit-withdrawal__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to accommodate content */
    padding: 20px 25px;
}

.page-faq-deposit-withdrawal__faq-answer p {
    margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__faq-answer ul,
.page-faq-deposit-withdrawal__faq-answer ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-faq-deposit-withdrawal__faq-answer li {
    margin-bottom: 8px;
}

.page-faq-deposit-withdrawal__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-faq-deposit-withdrawal__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    background-color: #000;
}

.page-faq-deposit-withdrawal__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.page-faq-deposit-withdrawal__cta-section {
    text-align: center;
    background-color: var(--primary-color);
    color: var(--secondary-color); /* Dark text on gold background */
    padding: 80px 0;
}

.page-faq-deposit-withdrawal__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-faq-deposit-withdrawal__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--secondary-color);
}

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

.page-faq-deposit-withdrawal__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border: 2px solid var(--secondary-color);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.page-faq-deposit-withdrawal__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 2.8em;
    }
    .page-faq-deposit-withdrawal__section-title {
        font-size: 2em;
    }
    .page-faq-deposit-withdrawal__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-faq-deposit-withdrawal__hero-section {
        min-height: 350px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 2.2em;
    }
    .page-faq-deposit-withdrawal__hero-description {
        font-size: 1em;
    }
    .page-faq-deposit-withdrawal__btn-primary,
    .page-faq-deposit-withdrawal__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-faq-deposit-withdrawal__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-faq-deposit-withdrawal__intro-section,
    .page-faq-deposit-withdrawal__faq-section,
    .page-faq-deposit-withdrawal__video-section,
    .page-faq-deposit-withdrawal__cta-section {
        padding: 40px 0;
    }
    .page-faq-deposit-withdrawal__section-title,
    .page-faq-deposit-withdrawal__cta-title {
        font-size: 1.8em;
    }
    .page-faq-deposit-withdrawal__section-description,
    .page-faq-deposit-withdrawal__cta-description {
        font-size: 0.95em;
        margin-left: 15px;
        margin-right: 15px;
    }
    .page-faq-deposit-withdrawal__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-faq-deposit-withdrawal__faq-answer {
        padding: 0 20px;
    }
    .page-faq-deposit-withdrawal__faq-item.active .page-faq-deposit-withdrawal__faq-answer {
        padding: 15px 20px;
    }
    .page-faq-deposit-withdrawal__container {
        padding: 0 15px;
    }
    
    /* Images and Videos Responsive */
    .page-faq-deposit-withdrawal img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-faq-deposit-withdrawal__image {
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }
    .page-faq-deposit-withdrawal video,
    .page-faq-deposit-withdrawal__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-faq-deposit-withdrawal__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-faq-deposit-withdrawal__video-section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-faq-deposit-withdrawal__hero-title {
        font-size: 1.8em;
    }
    .page-faq-deposit-withdrawal__section-title,
    .page-faq-deposit-withdrawal__cta-title {
        font-size: 1.6em;
    }
    .page-faq-deposit-withdrawal__hero-section {
        min-height: 300px;
    }
}