/* style/deposit.css */

/* Core styles for the deposit page */
.page-deposit {
    font-family: Arial, sans-serif;
    color: #E0E0E0; /* Light grey text for dark background */
    line-height: 1.6;
    background-color: #1A202C; /* Main brand color */
}

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

.page-deposit__section {
    padding: 60px 0;
    text-align: center;
}

.page-deposit__section:nth-child(odd) {
    background-color: #2D3748; /* Slightly lighter dark background */
}

.page-deposit__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Accent color for titles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-deposit__section-intro {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #B0B0B0;
}

/* Buttons */
.page-deposit__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.05em;
}

.page-deposit__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #1A202C; /* Dark text for light button */
    border: 2px solid #FFD700;
}

.page-deposit__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-deposit__btn--accent {
    background-color: #FFD700; /* Accent color */
    color: #1A202C; /* Dark text for light button */
    border: 2px solid #FFD700;
}

.page-deposit__btn--accent:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-deposit__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent color text */
    border: 2px solid #FFD700;
}

.page-deposit__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

.page-deposit__btn--small {
    padding: 8px 20px;
    font-size: 0.9em;
}

.page-deposit__btn--large {
    padding: 15px 40px;
    font-size: 1.2em;
}

/* Hero Section */
.page-deposit__hero {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-deposit__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-deposit__hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-deposit__hero-btn {
    margin-top: 20px;
}

/* Why Choose Section (Features Grid) */
.page-deposit__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-deposit__feature-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.page-deposit__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-deposit__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: block;
    filter: brightness(1.2);
}

.page-deposit__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-deposit__feature-text {
    font-size: 1em;
    color: #B0B0B0;
}

/* Deposit Methods Section */
.page-deposit__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-deposit__method-card {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    border: 1px solid #333;
}

.page-deposit__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: block;
    filter: brightness(1.1);
}

.page-deposit__method-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-deposit__method-card ul,
.page-deposit__method-card ol {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-deposit__method-card ol {
    list-style-type: decimal;
}

.page-deposit__method-card li {
    margin-bottom: 8px;
}

.page-deposit__method-card p {
    color: #B0B0B0;
}

/* Steps Section */
.page-deposit__steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.page-deposit__step-item {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
    padding-left: 80px;
    border: 1px solid #333;
}

.page-deposit__step-number {
    position: absolute;
    left: 20px;
    top: 30px;
    background-color: #FFD700;
    color: #1A202C;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-deposit__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-deposit__step-text {
    font-size: 1em;
    color: #B0B0B0;
}

/* Notes Section */
.page-deposit__notes-list {
    list-style-type: disc;
    margin-left: 20px;
    text-align: left;
    max-width: 900px;
    margin: 40px auto 0 auto;
    color: #E0E0E0;
}

.page-deposit__notes-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-deposit__notes-list li strong {
    color: #FFD700;
}

/* FAQ Section */
.page-deposit__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-deposit__faq-item {
    background-color: #1A202C;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
}

.page-deposit__faq-question {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-deposit__faq-answer {
    font-size: 1em;
    color: #B0B0B0;
}

/* Call to Action Section */
.page-deposit__cta {
    background-color: #FFD700; /* Accent color background */
    color: #1A202C; /* Dark text */
    padding: 80px 0;
}

.page-deposit__cta .page-deposit__section-title {
    color: #1A202C;
}

.page-deposit__cta .page-deposit__section-intro {
    color: #4A5568;
}

.page-deposit__cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-deposit__cta-buttons .page-deposit__btn--accent {
    background-color: #1A202C;
    color: #FFD700;
    border-color: #1A202C;
}

.page-deposit__cta-buttons .page-deposit__btn--accent:hover {
    background-color: #000000;
    border-color: #000000;
    color: #FFD700;
}

.page-deposit__cta-buttons .page-deposit__btn--secondary {
    background-color: transparent;
    color: #1A202C;
    border-color: #1A202C;
}

.page-deposit__cta-buttons .page-deposit__btn--secondary:hover {
    background-color: #1A202C;
    color: #FFD700;
}

/* Conclusion Section */
.page-deposit__conclusion {
    padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-deposit__hero-title {
        font-size: 2.5em;
    }

    .page-deposit__hero-description {
        font-size: 1em;
    }

    .page-deposit__section-title {
        font-size: 2em;
    }

    .page-deposit__feature-title,
    .page-deposit__method-title,
    .page-deposit__step-title,
    .page-deposit__faq-question {
        font-size: 1.5em;
    }

    .page-deposit__features-grid,
    .page-deposit__methods-grid {
        grid-template-columns: 1fr;
    }

    .page-deposit__step-item {
        padding-left: 60px;
    }

    .page-deposit__step-number {
        width: 30px;
        height: 30px;
        font-size: 1.2em;
        left: 15px;
        top: 25px;
    }

    .page-deposit__btn--large {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-deposit__hero-title {
        font-size: 2em;
    }

    .page-deposit__section-title {
        font-size: 1.8em;
    }

    .page-deposit__btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .page-deposit__cta-buttons {
        flex-direction: column;
    }
}