/* style/resources-18win1-deposit-withdrawal.css */
.page-resources-18win1-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

.page-resources-18win1-deposit-withdrawal__hero {
    background: linear-gradient(135deg, #0A192F 0%, #30475E 100%); /* Dark gradient for hero */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-resources-18win1-deposit-withdrawal__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-resources-18win1-deposit-withdrawal__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for emphasis */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-18win1-deposit-withdrawal__hero-subtitle {
    font-size: 1.4em;
    color: #f5e6d0;
    margin-bottom: 30px;
}

.page-resources-18win1-deposit-withdrawal__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-resources-18win1-deposit-withdrawal__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.7);
}

.page-resources-18win1-deposit-withdrawal__section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-resources-18win1-deposit-withdrawal__section:nth-of-type(even) {
    background-color: #1a2a40; /* Slightly lighter dark for alternating sections */
}

.page-resources-18win1-deposit-withdrawal__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-18win1-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-resources-18win1-deposit-withdrawal__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-resources-18win1-deposit-withdrawal__text-block {
    font-size: 1.1em;
    color: #f5e6d0;
    margin-bottom: 20px;
}

.page-resources-18win1-deposit-withdrawal__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text for gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-resources-18win1-deposit-withdrawal__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-resources-18win1-deposit-withdrawal__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-resources-18win1-deposit-withdrawal__cta-button--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 20px;
}

.page-resources-18win1-deposit-withdrawal__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-resources-18win1-deposit-withdrawal__method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-18win1-deposit-withdrawal__method-card {
    background-color: #1a2a40; /* Slightly lighter dark card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-resources-18win1-deposit-withdrawal__method-card:hover {
    transform: translateY(-5px);
}

.page-resources-18win1-deposit-withdrawal__method-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-18win1-deposit-withdrawal__step-list {
    list-style-type: decimal;
    padding-left: 25px;
    color: #f5e6d0;
    margin-bottom: 20px;
}

.page-resources-18win1-deposit-withdrawal__step-list li {
    margin-bottom: 10px;
}

.page-resources-18win1-deposit-withdrawal__list {
    list-style-type: disc;
    padding-left: 25px;
    color: #f5e6d0;
    margin-bottom: 20px;
}

.page-resources-18win1-deposit-withdrawal__list li {
    margin-bottom: 10px;
}

.page-resources-18win1-deposit-withdrawal__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-resources-18win1-deposit-withdrawal__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-resources-18win1-deposit-withdrawal__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-resources-18win1-deposit-withdrawal__feature-item {
    background-color: #1a2a40;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-18win1-deposit-withdrawal__feature-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-resources-18win1-deposit-withdrawal__faq-item {
    background-color: #1a2a40;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-18win1-deposit-withdrawal__faq-question {
    font-size: 1.2em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-resources-18win1-deposit-withdrawal__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-resources-18win1-deposit-withdrawal__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-resources-18win1-deposit-withdrawal__faq-answer {
    color: #f5e6d0;
    font-size: 1.05em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
    padding-top: 0;
}

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

.page-resources-18win1-deposit-withdrawal__cta-final {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #0A192F;
}

.page-resources-18win1-deposit-withdrawal__cta-final .page-resources-18win1-deposit-withdrawal__section-title {
    margin-bottom: 20px;
}

.page-resources-18win1-deposit-withdrawal__cta-final .page-resources-18win1-deposit-withdrawal__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-resources-18win1-deposit-withdrawal__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.page-resources-18win1-deposit-withdrawal__conclusion {
    text-align: center;
    padding-bottom: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-resources-18win1-deposit-withdrawal__hero {
        padding: 60px 15px;
    }

    .page-resources-18win1-deposit-withdrawal__hero-title {
        font-size: 2.5em;
    }

    .page-resources-18win1-deposit-withdrawal__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-18win1-deposit-withdrawal__section-title {
        font-size: 2em;
    }

    .page-resources-18win1-deposit-withdrawal__subsection-title {
        font-size: 1.5em;
    }

    .page-resources-18win1-deposit-withdrawal__method-grid,
    .page-resources-18win1-deposit-withdrawal__security-features {
        grid-template-columns: 1fr;
    }

    .page-resources-18win1-deposit-withdrawal__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-resources-18win1-deposit-withdrawal__cta-button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-18win1-deposit-withdrawal__hero-title {
        font-size: 2em;
    }

    .page-resources-18win1-deposit-withdrawal__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-18win1-deposit-withdrawal__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-18win1-deposit-withdrawal__section-title {
        font-size: 1.8em;
    }

    .page-resources-18win1-deposit-withdrawal__subsection-title {
        font-size: 1.3em;
    }

    .page-resources-18win1-deposit-withdrawal__text-block,
    .page-resources-18win1-deposit-withdrawal__list li,
    .page-resources-18win1-deposit-withdrawal__step-list li {
        font-size: 0.95em;
    }
}