/* style/guides-deposit-withdrawal-tutorial.css */

/* General styling for the page content */
.page-guides-deposit-withdrawal-tutorial {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light text color for dark background */
    background-color: #1A202C; /* Main dark background */
}

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

/* Hero Section */
.page-guides-deposit-withdrawal-tutorial__hero {
    background: linear-gradient(135deg, #1A202C 0%, #303b4d 100%); /* Subtle gradient for depth */
    padding: 80px 20px;
    text-align: center;
    border-bottom: 3px solid #E0B400; /* Accent border */
}

.page-guides-deposit-withdrawal-tutorial__title {
    font-size: 3.2em;
    color: #E0B400; /* Accent color for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-guides-deposit-withdrawal-tutorial__subtitle {
    font-size: 1.2em;
    color: #C0C0C0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-guides-deposit-withdrawal-tutorial__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-guides-deposit-withdrawal-tutorial__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-guides-deposit-withdrawal-tutorial__btn--primary {
    background-color: #E0B400; /* Accent color */
    color: #1A202C; /* Dark text for accent background */
    border: 2px solid #E0B400;
}

.page-guides-deposit-withdrawal-tutorial__btn--primary:hover {
    background-color: #ffc933; /* Lighter accent on hover */
    transform: translateY(-2px);
}

.page-guides-deposit-withdrawal-tutorial__btn--secondary {
    background-color: transparent;
    color: #E0B400; /* Accent text for dark background */
    border: 2px solid #E0B400;
}

.page-guides-deposit-withdrawal-tutorial__btn--secondary:hover {
    background-color: #E0B400;
    color: #1A202C;
    transform: translateY(-2px);
}

/* Section Styling */
.page-guides-deposit-withdrawal-tutorial__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(224, 180, 0, 0.1); /* Subtle accent border */
}

.page-guides-deposit-withdrawal-tutorial__section:last-of-type {
    border-bottom: none;
}

.page-guides-deposit-withdrawal-tutorial__section-title {
    font-size: 2.5em;
    color: #E0B400; /* Accent color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-guides-deposit-withdrawal-tutorial__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #C0C0C0;
    text-align: justify;
}

.page-guides-deposit-withdrawal-tutorial__text-center {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
}

.page-guides-deposit-withdrawal-tutorial__text-center a {
    color: #E0B400;
    text-decoration: none;
    font-weight: bold;
}

.page-guides-deposit-withdrawal-tutorial__text-center a:hover {
    text-decoration: underline;
}

/* Image styling */
.page-guides-deposit-withdrawal-tutorial__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-guides-deposit-withdrawal-tutorial__method-card {
    background-color: #2A313C; /* Slightly lighter dark background for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-guides-deposit-withdrawal-tutorial__method-card:hover {
    transform: translateY(-5px);
}

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

.page-guides-deposit-withdrawal-tutorial__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #E0B400); /* Glow effect for icons */
}

.page-guides-deposit-withdrawal-tutorial__method-card p {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
    text-align: center;
}

.page-guides-deposit-withdrawal-tutorial__method-card ol {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.page-guides-deposit-withdrawal-tutorial__method-card ol li {
    background-color: #3A424D;
    margin-bottom: 8px;
    padding: 10px 15px;
    border-radius: 5px;
    color: #D0D0D0;
    font-size: 0.95em;
}

.page-guides-deposit-withdrawal-tutorial__method-card ol li strong {
    color: #E0B400;
}

.page-guides-deposit-withdrawal-tutorial__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 15px;
}

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

.page-guides-deposit-withdrawal-tutorial__step-card {
    background-color: #2A313C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    padding-top: 60px; /* Space for step number */
    transition: transform 0.3s ease;
}

.page-guides-deposit-withdrawal-tutorial__step-card:hover {
    transform: translateY(-5px);
}

.page-guides-deposit-withdrawal-tutorial__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E0B400;
    color: #1A202C;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    border: 3px solid #1A202C;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-guides-deposit-withdrawal-tutorial__step-title {
    font-size: 1.5em;
    color: #E0B400;
    margin-bottom: 15px;
    margin-top: 15px;
}

.page-guides-deposit-withdrawal-tutorial__step-card p {
    font-size: 1em;
    color: #B0B0B0;
    margin-bottom: 20px;
    text-align: center;
}

.page-guides-deposit-withdrawal-tutorial__step-card a {
    color: #E0B400;
    text-decoration: none;
    font-weight: bold;
}

.page-guides-deposit-withdrawal-tutorial__step-card a:hover {
    text-decoration: underline;
}

.page-guides-deposit-withdrawal-tutorial__step-image {
    max-width: 100%;
    height: 150px; /* Fixed height for consistency */
    object-fit: contain; /* Ensure image content is visible */
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-guides-deposit-withdrawal-tutorial__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-guides-deposit-withdrawal-tutorial__cta-bottom p {
    font-size: 1.2em;
    color: #C0C0C0;
    margin-bottom: 25px;
}

/* Important Tips List */
.page-guides-deposit-withdrawal-tutorial__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-guides-deposit-withdrawal-tutorial__list li {
    background-color: #2A313C;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid #E0B400;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    color: #D0D0D0;
    line-height: 1.8;
}

.page-guides-deposit-withdrawal-tutorial__list li strong {
    color: #E0B400;
    font-size: 1.1em;
}

/* FAQ Section */
.page-guides-deposit-withdrawal-tutorial__faq-item {
    background-color: #2A313C;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-guides-deposit-withdrawal-tutorial__faq-question {
    font-size: 1.4em;
    color: #E0B400;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-guides-deposit-withdrawal-tutorial__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-guides-deposit-withdrawal-tutorial__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-guides-deposit-withdrawal-tutorial__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    margin-top: 0;
    padding-top: 0;
}

.page-guides-deposit-withdrawal-tutorial__faq-answer.active {
    max-height: 200px; /* Adjust based on expected content */
    opacity: 1;
    margin-top: 15px;
    padding-top: 10px;
}

/* Conclusion Section */
.page-guides-deposit-withdrawal-tutorial__section--conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-guides-deposit-withdrawal-tutorial__section--conclusion p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-guides-deposit-withdrawal-tutorial__section--conclusion .page-guides-deposit-withdrawal-tutorial__cta-group {
    margin-top: 40px;
}

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

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

    .page-guides-deposit-withdrawal-tutorial__subtitle,
    .page-guides-deposit-withdrawal-tutorial__section p,
    .page-guides-deposit-withdrawal-tutorial__list li,
    .page-guides-deposit-withdrawal-tutorial__faq-answer {
        font-size: 1em;
    }

    .page-guides-deposit-withdrawal-tutorial__method-grid,
    .page-guides-deposit-withdrawal-tutorial__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-guides-deposit-withdrawal-tutorial__hero {
        padding: 60px 20px;
    }

    .page-guides-deposit-withdrawal-tutorial__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-guides-deposit-withdrawal-tutorial__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

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

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

    .page-guides-deposit-withdrawal-tutorial__hero {
        padding: 40px 15px;
    }

    .page-guides-deposit-withdrawal-tutorial__container {
        padding: 15px;
    }
}