/* style/payment-methods-withdrawal-guide.css */

/* Base styles for the page */
.page-payment-methods-withdrawal-guide {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-payment-methods-withdrawal-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-payment-methods-withdrawal-guide__section-title {
    font-size: 2.5em;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F2C14E, transparent);
    border-radius: 2px;
}

.page-payment-methods-withdrawal-guide__text-block {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-payment-methods-withdrawal-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
}

.page-payment-methods-withdrawal-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4);
}

.page-payment-methods-withdrawal-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    margin-top: 80px; /* Push content down from the top image */
}

.page-payment-methods-withdrawal-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-payment-methods-withdrawal-guide__description {
    font-size: 1.2em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-payment-methods-withdrawal-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-payment-methods-withdrawal-guide__btn-primary,
.page-payment-methods-withdrawal-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
}

.page-payment-methods-withdrawal-guide__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
}

.page-payment-methods-withdrawal-guide__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-payment-methods-withdrawal-guide__btn-secondary {
    background-color: transparent;
    color: #2AD16F; /* Main color from button gradient */
    border: 2px solid #2E7A4E; /* Border */
}

.page-payment-methods-withdrawal-guide__btn-secondary:hover {
    background-color: #2E7A4E; /* Border color */
    color: #F2FFF6;
    box-shadow: 0 0 15px rgba(46, 122, 78, 0.5); /* Border color with transparency */
}

.page-payment-methods-withdrawal-guide__btn-center {
    display: block;
    margin: 40px auto 0 auto;
    max-width: 300px;
}

/* Info Section */
.page-payment-methods-withdrawal-guide__info-section {
    padding: 80px 0;
    background-color: #08160F;
}

.page-payment-methods-withdrawal-guide__dark-section {
    background-color: #0A4B2C; /* Deep Green */
    padding: 80px 0;
}

.page-payment-methods-withdrawal-guide__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-payment-methods-withdrawal-guide__feature-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-withdrawal-guide__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), 0 0 20px #57E38D; /* Glow */
}

.page-payment-methods-withdrawal-guide__feature-icon {
    font-size: 3em;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    display: block;
}

.page-payment-methods-withdrawal-guide__feature-heading {
    font-size: 1.8em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__feature-text {
    color: #A7D9B8; /* Text Secondary */
}

/* Guide Section */
.page-payment-methods-withdrawal-guide__guide-section {
    padding: 80px 0;
    background-color: #08160F;
}

.page-payment-methods-withdrawal-guide__step-by-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
}

.page-payment-methods-withdrawal-guide__step-item {
    background-color: #11271B; /* Card BG */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid #2E7A4E; /* Border */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-payment-methods-withdrawal-guide__step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-payment-methods-withdrawal-guide__step-heading {
    font-size: 2em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__step-text {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-payment-methods-withdrawal-guide__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #2E7A4E;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Troubleshooting Section */
.page-payment-methods-withdrawal-guide__troubleshooting-section {
    padding: 80px 0;
}

.page-payment-methods-withdrawal-guide__issue-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-payment-methods-withdrawal-guide__issue-card {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease;
}

.page-payment-methods-withdrawal-guide__issue-card:hover {
    transform: translateY(-5px);
}

.page-payment-methods-withdrawal-guide__issue-heading {
    font-size: 1.6em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__issue-text {
    color: #A7D9B8; /* Text Secondary */
}

/* Tips Section */
.page-payment-methods-withdrawal-guide__tips-section {
    padding: 80px 0;
    background-color: #08160F;
    text-align: center;
}

.page-payment-methods-withdrawal-guide__tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 50px;
    margin-bottom: 60px;
}

.page-payment-methods-withdrawal-guide__tip-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease;
}

.page-payment-methods-withdrawal-guide__tip-item:hover {
    transform: translateY(-5px);
}

.page-payment-methods-withdrawal-guide__tip-icon {
    font-size: 2.5em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    display: block;
}

.page-payment-methods-withdrawal-guide__tip-heading {
    font-size: 1.6em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-payment-methods-withdrawal-guide__tip-text {
    color: #A7D9B8; /* Text Secondary */
}

.page-payment-methods-withdrawal-guide__tips-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #2E7A4E;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
}

/* Security Section */
.page-payment-methods-withdrawal-guide__security-section {
    padding: 80px 0;
}

.page-payment-methods-withdrawal-guide__security-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.page-payment-methods-withdrawal-guide__security-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease;
}

.page-payment-methods-withdrawal-guide__security-item:hover {
    transform: translateY(-5px);
}

.page-payment-methods-withdrawal-guide__security-icon {
    font-size: 3em;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    display: block;
}

.page-payment-methods-withdrawal-guide__security-heading {
    font-size: 1.8em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-payment-methods-withdrawal-guide__security-text {
    color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-payment-methods-withdrawal-guide__faq-section {
    padding: 80px 0;
    background-color: #08160F;
}

.page-payment-methods-withdrawal-guide__faq-list {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-withdrawal-guide__faq-item {
    background-color: #11271B; /* Card BG */
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-withdrawal-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #2E7A4E; /* Divider */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-payment-methods-withdrawal-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-payment-methods-withdrawal-guide__faq-question:hover {
    background-color: #13994A; /* Darker green from button gradient */
}

.page-payment-methods-withdrawal-guide__faq-qtext {
    flex-grow: 1;
}

.page-payment-methods-withdrawal-guide__faq-toggle {
    font-size: 1.5em;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.page-payment-methods-withdrawal-guide__faq-item[open] .page-payment-methods-withdrawal-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-payment-methods-withdrawal-guide__faq-answer {
    padding: 20px 30px;
    color: #A7D9B8; /* Text Secondary */
    background-color: #11271B; /* Card BG */
    font-size: 1.1em;
}

/* CTA Bottom Section */
.page-payment-methods-withdrawal-guide__cta-bottom {
    padding: 80px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-payment-methods-withdrawal-guide__hero-content {
        margin-top: 40px;
        padding: 30px;
    }

    .page-payment-methods-withdrawal-guide__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
}

@media (max-width: 768px) {
    .page-payment-methods-withdrawal-guide__container {
        padding: 0 15px;
    }

    .page-payment-methods-withdrawal-guide__section-title {
        font-size: 2em;
    }

    .page-payment-methods-withdrawal-guide__text-block {
        font-size: 1em;
    }

    .page-payment-methods-withdrawal-guide__hero-section {
        padding-bottom: 40px;
    }

    .page-payment-methods-withdrawal-guide__hero-content {
        padding: 20px;
        margin-top: 20px;
    }

    .page-payment-methods-withdrawal-guide__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-payment-methods-withdrawal-guide__description {
        font-size: 1em;
    }

    .page-payment-methods-withdrawal-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-payment-methods-withdrawal-guide__btn-primary,
    .page-payment-methods-withdrawal-guide__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-payment-methods-withdrawal-guide__btn-center {
        max-width: 100%;
    }

    .page-payment-methods-withdrawal-guide__info-section,
    .page-payment-methods-withdrawal-guide__dark-section,
    .page-payment-methods-withdrawal-guide__guide-section,
    .page-payment-methods-withdrawal-guide__troubleshooting-section,
    .page-payment-methods-withdrawal-guide__tips-section,
    .page-payment-methods-withdrawal-guide__security-section,
    .page-payment-methods-withdrawal-guide__faq-section,
    .page-payment-methods-withdrawal-guide__cta-bottom {
        padding: 40px 0;
    }

    .page-payment-methods-withdrawal-guide__feature-list,
    .page-payment-methods-withdrawal-guide__issue-list,
    .page-payment-methods-withdrawal-guide__tips-list,
    .page-payment-methods-withdrawal-guide__security-list {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .page-payment-methods-withdrawal-guide__step-item {
        padding: 30px;
    }

    .page-payment-methods-withdrawal-guide__step-heading {
        font-size: 1.6em;
    }

    .page-payment-methods-withdrawal-guide__issue-heading,
    .page-payment-methods-withdrawal-guide__tip-heading,
    .page-payment-methods-withdrawal-guide__security-heading {
        font-size: 1.4em;
    }

    .page-payment-methods-withdrawal-guide__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-payment-methods-withdrawal-guide__faq-answer {
        padding: 15px 20px;
        font-size: 1em;
    }

    /* Mobile image and video responsiveness */
    .page-payment-methods-withdrawal-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-payment-methods-withdrawal-guide video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-payment-methods-withdrawal-guide__section,
    .page-payment-methods-withdrawal-guide__card,
    .page-payment-methods-withdrawal-guide__container,
    .page-payment-methods-withdrawal-guide__video-section,
    .page-payment-methods-withdrawal-guide__video-container,
    .page-payment-methods-withdrawal-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-payment-methods-withdrawal-guide__video-section {
        padding-top: 10px !important;
    }
    .page-payment-methods-withdrawal-guide__cta-buttons,
    .page-payment-methods-withdrawal-guide__button-group,
    .page-payment-methods-withdrawal-guide__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-payment-methods-withdrawal-guide__cta-buttons {
        flex-direction: column;
    }
}