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

/* Biến CSS */
:root {
    --page-primary-color: #007BFF;
    --page-secondary-color: #FFC107;
    --page-text-color-dark: #333333;
    --page-text-color-light: #ffffff;
    --page-background-light: #f8f9fa;
    --page-background-dark: #e9ecef;
    --page-border-color: #dee2e6;
}

.page-beginner-guide-deposit-withdrawal-tutorial {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-color-dark);
    background-color: var(--page-background-light);
}

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

/* Hero Section */
.page-beginner-guide-deposit-withdrawal-tutorial__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color), #0056b3);
    color: var(--page-text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-deposit-withdrawal-tutorial__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_orange_pattern]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-beginner-guide-deposit-withdrawal-tutorial__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: var(--page-text-color-light);
}

.page-beginner-guide-deposit-withdrawal-tutorial__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
}

.page-beginner-guide-deposit-withdrawal-tutorial__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-beginner-guide-deposit-withdrawal-tutorial__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.05em;
    border: 2px solid transparent;
    cursor: pointer;
}

.page-beginner-guide-deposit-withdrawal-tutorial__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-text-color-dark);
    border-color: var(--page-secondary-color);
}

.page-beginner-guide-deposit-withdrawal-tutorial__btn--primary:hover {
    background-color: #e0ac05;
    border-color: #e0ac05;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-deposit-withdrawal-tutorial__btn--secondary {
    background-color: transparent;
    color: var(--page-text-color-light);
    border-color: var(--page-text-color-light);
}

.page-beginner-guide-deposit-withdrawal-tutorial__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--page-text-color-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-deposit-withdrawal-tutorial__btn--large {
    padding: 15px 35px;
    font-size: 1.15em;
}

/* Content Sections */
.page-beginner-guide-deposit-withdrawal-tutorial__content-section {
    padding: 60px 0;
}

.page-beginner-guide-deposit-withdrawal-tutorial__content-section--alt-bg {
    background-color: var(--page-background-dark);
}

.page-beginner-guide-deposit-withdrawal-tutorial__section-title {
    font-size: 2em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-beginner-guide-deposit-withdrawal-tutorial__subsection-title {
    font-size: 1.5em;
    color: #0056b3;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-beginner-guide-deposit-withdrawal-tutorial__content-section p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-beginner-guide-deposit-withdrawal-tutorial__content-section ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-beginner-guide-deposit-withdrawal-tutorial__content-section li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-beginner-guide-deposit-withdrawal-tutorial__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-deposit-withdrawal-tutorial__img--full-width {
    width: 100%;
}

.page-beginner-guide-deposit-withdrawal-tutorial__link {
    color: var(--page-primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-beginner-guide-deposit-withdrawal-tutorial__link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-beginner-guide-deposit-withdrawal-tutorial__tip {
    background-color: #e6f7ff;
    border-left: 5px solid var(--page-primary-color);
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 5px;
    font-style: italic;
}

.page-beginner-guide-deposit-withdrawal-tutorial__warning {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 5px;
    font-weight: bold;
    color: #856404;
}

.page-beginner-guide-deposit-withdrawal-tutorial__cta-box {
    background-color: #f0f8ff;
    border: 1px solid var(--page-primary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-beginner-guide-deposit-withdrawal-tutorial__cta-box p {
    font-size: 1.15em;
    margin-bottom: 20px;
    color: var(--page-text-color-dark);
}

.page-beginner-guide-deposit-withdrawal-tutorial__final-cta-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-beginner-guide-deposit-withdrawal-tutorial__hero-title {
        font-size: 2.2em;
    }

    .page-beginner-guide-deposit-withdrawal-tutorial__hero-subtitle {
        font-size: 1em;
    }

    .page-beginner-guide-deposit-withdrawal-tutorial__hero-actions {
        flex-direction: column;
    }

    .page-beginner-guide-deposit-withdrawal-tutorial__btn {
        width: 80%;
        max-width: 300px;
    }

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

    .page-beginner-guide-deposit-withdrawal-tutorial__subsection-title {
        font-size: 1.3em;
    }
    
    .page-beginner-guide-deposit-withdrawal-tutorial__final-cta-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-deposit-withdrawal-tutorial__hero-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-deposit-withdrawal-tutorial__hero-section {
        padding: 50px 0;
    }

    .page-beginner-guide-deposit-withdrawal-tutorial__section-title {
        font-size: 1.5em;
    }
    
    .page-beginner-guide-deposit-withdrawal-tutorial__btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}