/* style/resources-13win-deposit-withdrawal.css */
.page-resources-13win-deposit-withdrawal {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

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

.page-resources-13win-deposit-withdrawal__container--narrow {
    max-width: 900px;
}

.page-resources-13win-deposit-withdrawal__hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #000080 100%);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-13win-deposit-withdrawal__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-resources-13win-deposit-withdrawal__hero-section > * {
    position: relative;
    z-index: 2;
}

.page-resources-13win-deposit-withdrawal__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-13win-deposit-withdrawal__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-resources-13win-deposit-withdrawal__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-resources-13win-deposit-withdrawal__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-resources-13win-deposit-withdrawal__btn--primary {
    background-color: #FFD700;
    color: #000080;
}

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

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

.page-resources-13win-deposit-withdrawal__btn--secondary:hover {
    background-color: #FFD700;
    color: #000080;
    transform: translateY(-2px);
}

.page-resources-13win-deposit-withdrawal__content-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-13win-deposit-withdrawal__content-section:nth-of-type(even) {
    background-color: #f9f9f9;
}

.page-resources-13win-deposit-withdrawal__section-title {
    font-size: 2.5em;
    color: #000080;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-13win-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-13win-deposit-withdrawal__subsection-title {
    font-size: 1.8em;
    color: #000080;
    margin-top: 40px;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-resources-13win-deposit-withdrawal__content-section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #444;
}

.page-resources-13win-deposit-withdrawal__content-section ul,
.page-resources-13win-deposit-withdrawal__content-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-resources-13win-deposit-withdrawal__content-section li {
    font-size: 1.05em;
    margin-bottom: 10px;
    color: #555;
}

.page-resources-13win-deposit-withdrawal__content-section li strong {
    color: #000080;
}

.page-resources-13win-deposit-withdrawal__step-by-step ol {
    list-style-type: none;
    counter-reset: step-counter;
    padding: 0;
}

.page-resources-13win-deposit-withdrawal__step-by-step li {
    counter-increment: step-counter;
    margin-bottom: 25px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
    color: #333;
}

.page-resources-13win-deposit-withdrawal__step-by-step li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #000080;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-resources-13win-deposit-withdrawal__note {
    font-style: italic;
    color: #666;
    margin-top: 20px;
    padding: 15px;
    background-color: #fffbe6;
    border-left: 4px solid #FFD700;
    border-radius: 4px;
}

.page-resources-13win-deposit-withdrawal__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-13win-deposit-withdrawal__image--full-width {
    width: 100%;
}

.page-resources-13win-deposit-withdrawal__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-13win-deposit-withdrawal__feature-item {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-resources-13win-deposit-withdrawal__feature-item:hover {
    transform: translateY(-5px);
    background-color: #ffe680;
}

.page-resources-13win-deposit-withdrawal__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

.page-resources-13win-deposit-withdrawal__feature-item h3 {
    font-size: 1.5em;
    color: #000080;
    margin-bottom: 15px;
}

.page-resources-13win-deposit-withdrawal__feature-item p {
    font-size: 1em;
    color: #555;
}

.page-resources-13win-deposit-withdrawal__faq-list {
    margin-top: 40px;
}

.page-resources-13win-deposit-withdrawal__faq-item {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-13win-deposit-withdrawal__faq-question {
    font-size: 1.2em;
    color: #000080;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    background-color: #e6f2ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-resources-13win-deposit-withdrawal__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-resources-13win-deposit-withdrawal__faq-answer {
    padding: 0 20px 20px;
    font-size: 1.05em;
    color: #444;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-resources-13win-deposit-withdrawal__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px;
}

.page-resources-13win-deposit-withdrawal__cta-section {
    background: #000080;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    margin-top: 40px;
}

.page-resources-13win-deposit-withdrawal__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-resources-13win-deposit-withdrawal__cta-text {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-13win-deposit-withdrawal__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .page-resources-13win-deposit-withdrawal__hero-title {
        font-size: 2.5em;
    }

    .page-resources-13win-deposit-withdrawal__hero-subtitle {
        font-size: 1.2em;
    }

    .page-resources-13win-deposit-withdrawal__hero-actions,
    .page-resources-13win-deposit-withdrawal__cta-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-resources-13win-deposit-withdrawal__btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-resources-13win-deposit-withdrawal__section-title {
        font-size: 2em;
    }

    .page-resources-13win-deposit-withdrawal__subsection-title {
        font-size: 1.5em;
    }

    .page-resources-13win-deposit-withdrawal__features-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-13win-deposit-withdrawal__cta-title {
        font-size: 2em;
    }

    .page-resources-13win-deposit-withdrawal__cta-text {
        font-size: 1.1em;
    }

    .page-resources-13win-deposit-withdrawal__step-by-step li {
        padding-left: 50px;
    }

    .page-resources-13win-deposit-withdrawal__step-by-step li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
}

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

    .page-resources-13win-deposit-withdrawal__hero-subtitle {
        font-size: 1em;
    }

    .page-resources-13win-deposit-withdrawal__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-13win-deposit-withdrawal__section-title {
        font-size: 1.8em;
    }

    .page-resources-13win-deposit-withdrawal__subsection-title {
        font-size: 1.3em;
    }
}