/* style/deposit-withdrawal-deposit-methods.css */

/* Base styles for the page content */
.page-deposit-withdrawal-deposit-methods {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    line-height: 1.6;
    background-color: #0d0d1a; /* A slightly lighter variant of main color for overall background */
}

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

/* Highlight color for keywords */
.page-deposit-withdrawal-deposit-methods .highlight {
    color: #E9B824;
}

/* Buttons */
.page-deposit-withdrawal-deposit-methods__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: none;
}

.page-deposit-withdrawal-deposit-methods__btn--primary {
    background-color: #E9B824; /* Gold */
    color: #1A1A2E; /* Dark blue text on gold */
}

.page-deposit-withdrawal-deposit-methods__btn--primary:hover {
    background-color: #f7d04e; /* Lighter gold */
    transform: translateY(-2px);
}

.page-deposit-withdrawal-deposit-methods__btn--secondary {
    background-color: transparent;
    color: #E9B824; /* Gold text */
    border: 2px solid #E9B824;
}

.page-deposit-withdrawal-deposit-methods__btn--secondary:hover {
    background-color: #E9B824; /* Gold background */
    color: #1A1A2E; /* Dark blue text */
    transform: translateY(-2px);
}

.page-deposit-withdrawal-deposit-methods__inline-link {
    color: #E9B824;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-deposit-withdrawal-deposit-methods__inline-link:hover {
    color: #f7d04e;
}

/* Hero Section */
.page-deposit-withdrawal-deposit-methods__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #2e2e4f 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-deposit-methods__hero .page-deposit-withdrawal-deposit-methods__container {
    position: relative;
    z-index: 2;
}

.page-deposit-withdrawal-deposit-methods__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal-deposit-methods__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #CCCCCC;
}

.page-deposit-withdrawal-deposit-methods__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.2; /* Subtle background image */
    z-index: 1;
}

.page-deposit-withdrawal-deposit-methods__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
    transform: scale(1.05);
}


/* General Section Styling */
.page-deposit-withdrawal-deposit-methods__section {
    padding: 60px 0;
    background-color: #1A1A2E; /* Main dark background for sections */
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.page-deposit-withdrawal-deposit-methods__section:nth-child(even) {
    background-color: #121221; /* Slightly different dark background for alternating sections */
}

.page-deposit-withdrawal-deposit-methods__section-title {
    font-size: 2.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

/* Introduction Section */
.page-deposit-withdrawal-deposit-methods__introduction p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #CCCCCC;
}

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

.page-deposit-withdrawal-deposit-methods__method-card {
    background-color: #26263e; /* Darker variant of main color */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-deposit-withdrawal-deposit-methods__method-card:hover {
    transform: translateY(-5px);
    background-color: #3a3a5e;
}

.page-deposit-withdrawal-deposit-methods__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #E9B824); /* Gold glow */
}

.page-deposit-withdrawal-deposit-methods__method-title {
    font-size: 1.8em;
    color: #E9B824;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-deposit-methods__method-card p {
    color: #C0C0C0;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.page-deposit-withdrawal-deposit-methods__method-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.page-deposit-withdrawal-deposit-methods__method-card ul li {
    margin-bottom: 8px;
    color: #D0D0D0;
    position: relative;
    padding-left: 25px;
}

.page-deposit-withdrawal-deposit-methods__method-card ul li::before {
    content: '✓';
    color: #E9B824;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* How-to Guide */
.page-deposit-withdrawal-deposit-methods__steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-deposit-withdrawal-deposit-methods__step-card {
    background-color: #26263e;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
}

.page-deposit-withdrawal-deposit-methods__step-number {
    background-color: #E9B824;
    color: #1A1A2E;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: -50px auto 20px; /* Pulls number up slightly */
    border: 3px solid #1A1A2E;
    box-shadow: 0 0 10px rgba(233, 184, 36, 0.7);
}

.page-deposit-withdrawal-deposit-methods__step-title {
    font-size: 1.5em;
    color: #E9B824;
    margin-bottom: 15px;
}

.page-deposit-withdrawal-deposit-methods__step-card p {
    color: #CCCCCC;
    font-size: 0.95em;
}

.page-deposit-withdrawal-deposit-methods__cta-bottom {
    text-align: center;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Tips Section */
.page-deposit-withdrawal-deposit-methods__tips ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto 0;
}

.page-deposit-withdrawal-deposit-methods__tips ul li {
    background-color: #26263e;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #E9B824;
    border-radius: 8px;
    color: #D0D0D0;
    font-size: 1.1em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-deposit-methods__tips ul li strong {
    color: #E9B824;
}

/* Security Section */
.page-deposit-withdrawal-deposit-methods__security p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #CCCCCC;
}

.page-deposit-withdrawal-deposit-methods__security-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-deposit-withdrawal-deposit-methods__feature-item {
    text-align: center;
    flex: 1 1 200px; /* Allows items to grow/shrink */
    max-width: 250px;
}

.page-deposit-withdrawal-deposit-methods__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px #E9B824);
}

.page-deposit-withdrawal-deposit-methods__feature-item p {
    font-size: 1.1em;
    font-weight: bold;
    color: #E9B824;
    margin: 0;
}


/* FAQ Section */
.page-deposit-withdrawal-deposit-methods__faq {
    background-color: #121221;
}

.page-deposit-withdrawal-deposit-methods__accordion {
    max-width: 900px;
    margin: 40px auto 0;
}

.page-deposit-withdrawal-deposit-methods__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #3a3a5e;
    border-radius: 8px;
    overflow: hidden;
}

.page-deposit-withdrawal-deposit-methods__accordion-header {
    background-color: #26263e;
    color: #E9B824;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-deposit-withdrawal-deposit-methods__accordion-header:hover {
    background-color: #3a3a5e;
}

.page-deposit-withdrawal-deposit-methods__accordion-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-deposit-methods__accordion-header[aria-expanded="true"] .page-deposit-withdrawal-deposit-methods__accordion-icon {
    transform: rotate(45deg);
}

.page-deposit-withdrawal-deposit-methods__accordion-content {
    background-color: #1A1A2E;
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #CCCCCC;
}

.page-deposit-withdrawal-deposit-methods__accordion-content p {
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0;
    font-size: 1em;
}

.page-deposit-withdrawal-deposit-methods__accordion-header[aria-expanded="true"] + .page-deposit-withdrawal-deposit-methods__accordion-content {
    max-height: 200px; /* Adjust based on expected content height */
    padding-top: 15px;
    padding-bottom: 15px;
}


/* Call to Action Section */
.page-deposit-withdrawal-deposit-methods__call-to-action {
    text-align: center;
    background: linear-gradient(90deg, #1A1A2E, #2e2e4f);
    padding: 70px 0;
}

.page-deposit-withdrawal-deposit-methods__call-to-action .page-deposit-withdrawal-deposit-methods__section-title {
    margin-bottom: 20px;
}

.page-deposit-withdrawal-deposit-methods__call-to-action p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #D0D0D0;
}

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

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

    .page-deposit-withdrawal-deposit-methods__subtitle {
        font-size: 1.2em;
    }

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

    .page-deposit-withdrawal-deposit-methods__method-grid,
    .page-deposit-withdrawal-deposit-methods__steps-container,
    .page-deposit-withdrawal-deposit-methods__cta-buttons {
        grid-template-columns: 1fr;
    }

    .page-deposit-withdrawal-deposit-methods__method-card,
    .page-deposit-withdrawal-deposit-methods__step-card {
        padding: 20px;
    }

    .page-deposit-withdrawal-deposit-methods__step-number {
        margin-top: -40px;
    }

    .page-deposit-withdrawal-deposit-methods__tips ul li {
        font-size: 1em;
    }

    .page-deposit-withdrawal-deposit-methods__feature-item {
        flex: 1 1 150px;
    }
}

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

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

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

    .page-deposit-withdrawal-deposit-methods__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-deposit-withdrawal-deposit-methods__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
}