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

.page-deposit-withdrawal-deposit-tutorial {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #F8F8F8; /* Light text for dark background */
    background-color: #1A1A2E; /* Main dark background */
}

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

.page-deposit-withdrawal-deposit-tutorial__hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #30304a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #E9B824;
}

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

.page-deposit-withdrawal-deposit-tutorial__hero-subtitle {
    font-size: 1.5em;
    color: #F8F8F8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.page-deposit-withdrawal-deposit-tutorial__button--primary {
    background-color: #E9B824;
    color: #1A1A2E;
    border: 2px solid #E9B824;
}

.page-deposit-withdrawal-deposit-tutorial__button--primary:hover {
    background-color: #f7d247;
    transform: translateY(-3px);
}

.page-deposit-withdrawal-deposit-tutorial__button--secondary {
    background-color: transparent;
    color: #E9B824;
    border: 2px solid #E9B824;
}

.page-deposit-withdrawal-deposit-tutorial__button--secondary:hover {
    background-color: #E9B824;
    color: #1A1A2E;
    transform: translateY(-3px);
}

.page-deposit-withdrawal-deposit-tutorial__button--tertiary {
    background-color: #3a3a5e;
    color: #E9B824;
    border: 2px solid #3a3a5e;
}

.page-deposit-withdrawal-deposit-tutorial__button--tertiary:hover {
    background-color: #4a4a7e;
    transform: translateY(-3px);
}

.page-deposit-withdrawal-deposit-tutorial__content-section {
    padding: 60px 0;
    background-color: #2a2a4e;
}

.page-deposit-withdrawal-deposit-tutorial__bg--dark {
    background-color: #1A1A2E;
}

.page-deposit-withdrawal-deposit-tutorial__bg--light {
    background-color: #2a2a4e;
}

.page-deposit-withdrawal-deposit-tutorial__section-title {
    font-size: 2.5em;
    color: #E9B824;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

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

.page-deposit-withdrawal-deposit-tutorial__section-title--light {
    color: #F8F8F8;
}

.page-deposit-withdrawal-deposit-tutorial__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #D3D3D3;
}

.page-deposit-withdrawal-deposit-tutorial__text-block--light {
    color: #F8F8F8;
}

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

.page-deposit-withdrawal-deposit-tutorial__feature-item {
    background-color: #1A1A2E;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a3a5e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-deposit-withdrawal-deposit-tutorial__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

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

.page-deposit-withdrawal-deposit-tutorial__feature-item p {
    font-size: 1em;
    color: #D3D3D3;
    line-height: 1.7;
}

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

.page-deposit-withdrawal-deposit-tutorial__method-item {
    background-color: #2a2a4e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #4a4a7e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-deposit-withdrawal-deposit-tutorial__method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-deposit-withdrawal-deposit-tutorial__method-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(233, 184, 36, 0.5));
}

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

.page-deposit-withdrawal-deposit-tutorial__method-description {
    font-size: 1em;
    color: #D3D3D3;
    line-height: 1.7;
}

.page-deposit-withdrawal-deposit-tutorial__step-by-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.page-deposit-withdrawal-deposit-tutorial__step-item {
    background-color: #1A1A2E;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #E9B824;
    position: relative;
}

.page-deposit-withdrawal-deposit-tutorial__step-number {
    position: absolute;
    top: 20px;
    left: -25px;
    background-color: #E9B824;
    color: #1A1A2E;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(233, 184, 36, 0.7);
}

.page-deposit-withdrawal-deposit-tutorial__step-title {
    font-size: 2em;
    color: #E9B824;
    margin-bottom: 15px;
    padding-left: 40px;
}

.page-deposit-withdrawal-deposit-tutorial__step-item p {
    font-size: 1.1em;
    color: #D3D3D3;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 40px;
}

.page-deposit-withdrawal-deposit-tutorial__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #3a3a5e;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-deposit-tutorial__step-item .page-deposit-withdrawal-deposit-tutorial__button {
    margin-left: 40px;
    margin-top: 15px;
}

.page-deposit-withdrawal-deposit-tutorial__list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-deposit-withdrawal-deposit-tutorial__list li {
    background-color: #1A1A2E;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #E9B824;
}

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

.page-deposit-withdrawal-deposit-tutorial__list li p {
    font-size: 1em;
    color: #D3D3D3;
    line-height: 1.7;
    margin: 0;
}

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

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

.page-deposit-withdrawal-deposit-tutorial__faq-question {
    font-size: 1.4em;
    color: #E9B824;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-deposit-withdrawal-deposit-tutorial__faq-question:hover {
    background-color: #2a2a4e;
}

.page-deposit-withdrawal-deposit-tutorial__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-deposit-withdrawal-deposit-tutorial__faq-answer {
    font-size: 1em;
    color: #D3D3D3;
    padding: 0 25px 20px 25px;
    margin: 0;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-deposit-withdrawal-deposit-tutorial__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 10px;
}

.page-deposit-withdrawal-deposit-tutorial__cta-section {
    background: linear-gradient(90deg, #1A1A2E, #2a2a4e);
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #E9B824;
}

.page-deposit-withdrawal-deposit-tutorial__cta-title {
    font-size: 3em;
    color: #E9B824;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-deposit-withdrawal-deposit-tutorial__cta-text {
    font-size: 1.3em;
    color: #F8F8F8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-deposit-withdrawal-deposit-tutorial__cta-buttons .page-deposit-withdrawal-deposit-tutorial__button {
    min-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-deposit-withdrawal-deposit-tutorial__hero-title {
        font-size: 2.8em;
    }
    .page-deposit-withdrawal-deposit-tutorial__hero-subtitle {
        font-size: 1.3em;
    }
    .page-deposit-withdrawal-deposit-tutorial__section-title {
        font-size: 2em;
    }
    .page-deposit-withdrawal-deposit-tutorial__feature-grid, .page-deposit-withdrawal-deposit-tutorial__method-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-deposit-withdrawal-deposit-tutorial__cta-title {
        font-size: 2.5em;
    }
    .page-deposit-withdrawal-deposit-tutorial__cta-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-deposit-withdrawal-deposit-tutorial__hero-section {
        padding: 80px 0;
    }
    .page-deposit-withdrawal-deposit-tutorial__hero-title {
        font-size: 2.2em;
    }
    .page-deposit-withdrawal-deposit-tutorial__hero-subtitle {
        font-size: 1.1em;
    }
    .page-deposit-withdrawal-deposit-tutorial__section-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-deposit-tutorial__step-item {
        padding: 25px;
        border-left: 3px solid #E9B824;
    }
    .page-deposit-withdrawal-deposit-tutorial__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        left: -20px;
    }
    .page-deposit-withdrawal-deposit-tutorial__step-title, .page-deposit-withdrawal-deposit-tutorial__step-item p, .page-deposit-withdrawal-deposit-tutorial__step-item .page-deposit-withdrawal-deposit-tutorial__button {
        padding-left: 30px;
    }
    .page-deposit-withdrawal-deposit-tutorial__cta-title {
        font-size: 2em;
    }
    .page-deposit-withdrawal-deposit-tutorial__cta-text {
        font-size: 1em;
    }
    .page-deposit-withdrawal-deposit-tutorial__cta-buttons {
        flex-direction: column;
    }
    .page-deposit-withdrawal-deposit-tutorial__cta-buttons .page-deposit-withdrawal-deposit-tutorial__button {
        margin: 10px auto;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-deposit-tutorial__hero-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-deposit-tutorial__hero-subtitle {
        font-size: 0.9em;
    }
    .page-deposit-withdrawal-deposit-tutorial__section-title {
        font-size: 1.5em;
    }
    .page-deposit-withdrawal-deposit-tutorial__feature-grid, .page-deposit-withdrawal-deposit-tutorial__method-grid {
        grid-template-columns: 1fr;
    }
    .page-deposit-withdrawal-deposit-tutorial__feature-item, .page-deposit-withdrawal-deposit-tutorial__method-item {
        padding: 20px;
    }
    .page-deposit-withdrawal-deposit-tutorial__step-title {
        font-size: 1.5em;
    }
    .page-deposit-withdrawal-deposit-tutorial__faq-question {
        font-size: 1.2em;
        padding: 15px 20px;
    }
    .page-deposit-withdrawal-deposit-tutorial__faq-question::after {
        right: 20px;
    }
    .page-deposit-withdrawal-deposit-tutorial__faq-answer {
        padding: 0 20px 15px 20px;
    }
    .page-deposit-withdrawal-deposit-tutorial__cta-title {
        font-size: 1.8em;
    }
}