/* style/beginner-guide-first-deposit.css */

/* Biến CSS */
:root {
    --primary-color: #0A2239;
    --secondary-color: #FFD700;
    --text-dark: #333;
    --text-light: #f4f4f4;
    --background-light: #f9f9f9;
    --background-dark: #0A2239;
    --border-color: #eee;
}

/* Đảm bảo tất cả các selector đều có tiền tố .page-beginner-guide-first-deposit */
.page-beginner-guide-first-deposit {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

.page-beginner-guide-first-deposit .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,dark_pattern,tech_lines]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-beginner-guide-first-deposit .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.page-beginner-guide-first-deposit .hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 1;
}

.page-beginner-guide-first-deposit .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.page-beginner-guide-first-deposit .btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-beginner-guide-first-deposit .hero-image {
    max-width: 60%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

/* Content Section */
.page-beginner-guide-first-deposit .content-section,
.page-beginner-guide-first-deposit .steps-section,
.page-beginner-guide-first-deposit .important-notes-section,
.page-beginner-guide-first-deposit .faq-section,
.page-beginner-guide-first-deposit .final-cta-section {
    padding: 60px 0;
}

.page-beginner-guide-first-deposit .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-beginner-guide-first-deposit .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-beginner-guide-first-deposit .benefit-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-beginner-guide-first-deposit .benefit-list li {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    font-size: 1.1em;
}

.page-beginner-guide-first-deposit .benefit-list li .icon-check {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-right: 15px;
}

/* Steps Section */
.page-beginner-guide-first-deposit .steps-section {
    background-color: var(--background-light);
}

.page-beginner-guide-first-deposit .step-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-first-deposit .step-item .step-number {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: bold;
    margin: -70px auto 30px auto;
    border: 5px solid var(--primary-color);
    box-shadow: 0 0 0 5px #fff;
    position: relative;
    z-index: 2;
}

.page-beginner-guide-first-deposit .step-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .step-item p {
    margin-bottom: 20px;
}

.page-beginner-guide-first-deposit .step-item .step-image {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-first-deposit .btn-secondary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.page-beginner-guide-first-deposit .btn-secondary:hover {
    background-color: #061a2c;
    transform: translateY(-2px);
}

.page-beginner-guide-first-deposit .method-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
    text-align: left;
}

.page-beginner-guide-first-deposit .method-list li {
    background-color: var(--background-light);
    border-left: 5px solid var(--secondary-color);
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.page-beginner-guide-first-deposit .method-list li i {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-right: 10px;
}

.page-beginner-guide-first-deposit .call-to-action {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit .cta-text {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Important Notes Section */
.page-beginner-guide-first-deposit .important-notes-section {
    background-color: #fff;
}

.page-beginner-guide-first-deposit .note-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-beginner-guide-first-deposit .note-list li {
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-first-deposit .note-list li strong {
    color: var(--primary-color);
}

/* FAQ Section */
.page-beginner-guide-first-deposit .faq-section {
    background-color: var(--background-light);
}

.page-beginner-guide-first-deposit .faq-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-first-deposit .faq-question {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-beginner-guide-first-deposit .faq-answer {
    font-size: 1em;
    color: #555;
}

/* Final CTA Section */
.page-beginner-guide-first-deposit .final-cta-section {
    background: linear-gradient(45deg, var(--primary-color), #0A3259);
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-first-deposit .final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,gold_lines,dynamic_shapes]') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.page-beginner-guide-first-deposit .final-cta-title {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.page-beginner-guide-first-deposit .final-cta-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 1;
}

.page-beginner-guide-first-deposit .final-cta-buttons .btn {
    margin: 0 15px;
}

.page-beginner-guide-first-deposit .btn-large {
    padding: 18px 35px;
    font-size: 1.1em;
}

.page-beginner-guide-first-deposit .btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-beginner-guide-first-deposit .btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Icons for lists (using a simple placeholder, ideally font-awesome or similar) */
.page-beginner-guide-first-deposit .icon-check::before {
    content: '✔'; /* Placeholder for checkmark icon */
}
.page-beginner-guide-first-deposit .icon-bank::before {
    content: '🏦'; /* Placeholder for bank icon */
}
.page-beginner-guide-first-deposit .icon-ewallet::before {
    content: '📱'; /* Placeholder for e-wallet icon */
}
.page-beginner-guide-first-deposit .icon-crypto::before {
    content: '₿'; /* Placeholder for crypto icon */
}
.page-beginner-guide-first-deposit .icon-card::before {
    content: '💳'; /* Placeholder for card icon */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-first-deposit .hero-title {
        font-size: 2.8em;
    }
    .page-beginner-guide-first-deposit .hero-description {
        font-size: 1.1em;
    }
    .page-beginner-guide-first-deposit .section-title {
        font-size: 2em;
    }
    .page-beginner-guide-first-deposit .benefit-list {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide-first-deposit .step-item {
        padding: 30px;
    }
    .page-beginner-guide-first-deposit .step-title {
        font-size: 1.6em;
    }
    .page-beginner-guide-first-deposit .final-cta-title {
        font-size: 2.5em;
    }
    .page-beginner-guide-first-deposit .final-cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-first-deposit .hero-title {
        font-size: 2.2em;
    }
    .page-beginner-guide-first-deposit .hero-description {
        font-size: 1em;
    }
    .page-beginner-guide-first-deposit .hero-image {
        max-width: 80%;
    }
    .page-beginner-guide-first-deposit .btn-primary, .page-beginner-guide-first-deposit .btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide-first-deposit .section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-first-deposit .step-item {
        padding: 25px;
    }
    .page-beginner-guide-first-deposit .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        margin-top: -60px;
    }
    .page-beginner-guide-first-deposit .final-cta-title {
        font-size: 2em;
    }
    .page-beginner-guide-first-deposit .final-cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .page-beginner-guide-first-deposit .final-cta-buttons .btn {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-first-deposit .hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-first-deposit .hero-description {
        font-size: 0.95em;
    }
    .page-beginner-guide-first-deposit .hero-image {
        max-width: 95%;
    }
    .page-beginner-guide-first-deposit .section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-first-deposit .benefit-list li {
        font-size: 0.95em;
    }
    .page-beginner-guide-first-deposit .step-title {
        font-size: 1.4em;
    }
    .page-beginner-guide-first-deposit .cta-text {
        font-size: 1.2em;
    }
    .page-beginner-guide-first-deposit .final-cta-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-first-deposit .final-cta-description {
        font-size: 0.95em;
    }
}