/* style/beginner-guide-first-deposit.css */
.page-beginner-guide-first-deposit {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #051426; /* Slightly lighter than main for body background */
}

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

.page-beginner-guide-first-deposit-hero {
    background: linear-gradient(135deg, #0A2342 0%, #000E1A 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-first-deposit-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-first-deposit-hero-subtitle {
    font-size: 1.25em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.page-beginner-guide-first-deposit-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-beginner-guide-first-deposit-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-beginner-guide-first-deposit-btn-primary {
    background-color: #FFD700;
    color: #0A2342;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide-first-deposit-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-beginner-guide-first-deposit-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-beginner-guide-first-deposit-btn-secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide-first-deposit-section {
    padding: 60px 0;
    background-color: #0A2342;
    margin-bottom: 20px;
}

.page-beginner-guide-first-deposit-section:nth-of-type(even) {
    background-color: #051426;
}

.page-beginner-guide-first-deposit-section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

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

.page-beginner-guide-first-deposit-introduction p,
.page-beginner-guide-first-deposit-methods p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
}

.page-beginner-guide-first-deposit-image-fullwidth {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-beginner-guide-first-deposit-step-item {
    background-color: #1A3A5B; /* Darker blue for step items */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-beginner-guide-first-deposit-step-item:hover {
    transform: translateY(-5px);
    background-color: #2A4A6B;
}

.page-beginner-guide-first-deposit-step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-beginner-guide-first-deposit-step-item p {
    font-size: 1em;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.page-beginner-guide-first-deposit-step-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-beginner-guide-first-deposit-step-item a:hover {
    text-decoration: underline;
}

.page-beginner-guide-first-deposit-step-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #FFD700;
}

.page-beginner-guide-first-deposit-callout {
    background-color: #FFD700;
    color: #0A2342;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 50px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide-first-deposit-callout a {
    color: #0A2342;
    text-decoration: underline;
}

.page-beginner-guide-first-deposit-callout a:hover {
    color: #333;
}

.page-beginner-guide-first-deposit-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-beginner-guide-first-deposit-list li {
    background-color: #1A3A5B;
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex: 1 1 calc(50% - 40px);
    min-width: 300px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-beginner-guide-first-deposit-list li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-beginner-guide-first-deposit-ordered-list {
    list-style: none;
    padding: 0;
    counter-reset: item-counter;
}

.page-beginner-guide-first-deposit-ordered-list li {
    counter-increment: item-counter;
    background-color: #1A3A5B;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 80px;
}

.page-beginner-guide-first-deposit-ordered-list li::before {
    content: counter(item-counter);
    position: absolute;
    left: 20px;
    top: 20px;
    background-color: #FFD700;
    color: #0A2342;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-beginner-guide-first-deposit-ordered-list h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-beginner-guide-first-deposit-ordered-list p {
    font-size: 1.05em;
    color: #E0E0E0;
}

.page-beginner-guide-first-deposit-btn-link {
    background-color: #FFD700;
    color: #0A2342;
    margin-top: 20px;
}

.page-beginner-guide-first-deposit-btn-link:hover {
    background-color: #e6c200;
}

.page-beginner-guide-first-deposit-image-centered {
    display: block;
    margin: 30px auto;
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-beginner-guide-first-deposit-benefit-item {
    background-color: #1A3A5B;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit-benefit-item:hover {
    transform: translateY(-5px);
}

.page-beginner-guide-first-deposit-benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-beginner-guide-first-deposit-benefit-item h3 {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-beginner-guide-first-deposit-benefit-item p {
    font-size: 1em;
    color: #E0E0E0;
}

.page-beginner-guide-first-deposit-faq-item {
    background-color: #1A3A5B;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit-faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    font-weight: bold;
}

.page-beginner-guide-first-deposit-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
}

.page-beginner-guide-first-deposit-faq-question.active::after {
    content: '-';
}

.page-beginner-guide-first-deposit-faq-answer {
    font-size: 1.05em;
    color: #E0E0E0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-beginner-guide-first-deposit-faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    opacity: 1;
    padding-top: 15px;
}

.page-beginner-guide-first-deposit-cta {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #0A2342 0%, #000E1A 100%);
    color: #FFFFFF;
}

.page-beginner-guide-first-deposit-cta-content {
    max-width: 900px;
}

.page-beginner-guide-first-deposit-btn-large {
    padding: 18px 40px;
    font-size: 1.2em;
    margin: 0 10px;
}

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

    .page-beginner-guide-first-deposit-hero-subtitle {
        font-size: 1em;
    }

    .page-beginner-guide-first-deposit-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-beginner-guide-first-deposit-btn {
        width: 80%;
        margin: 0 auto;
    }

    .page-beginner-guide-first-deposit-section-title {
        font-size: 2em;
    }

    .page-beginner-guide-first-deposit-step-grid, .page-beginner-guide-first-deposit-benefit-grid {
        grid-template-columns: 1fr;
    }

    .page-beginner-guide-first-deposit-list li {
        flex: 1 1 100%;
    }

    .page-beginner-guide-first-deposit-ordered-list li {
        padding-left: 60px;
    }

    .page-beginner-guide-first-deposit-ordered-list li::before {
        width: 35px;
        height: 35px;
        font-size: 1.3em;
        left: 15px;
        top: 15px;
    }

    .page-beginner-guide-first-deposit-btn-large {
        width: 90%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-first-deposit-hero {
        padding: 60px 0;
    }

    .page-beginner-guide-first-deposit-hero-title {
        font-size: 2em;
    }

    .page-beginner-guide-first-deposit-section-title {
        font-size: 1.8em;
    }

    .page-beginner-guide-first-deposit-btn {
        font-size: 1em;
        padding: 12px 25px;
    }

    .page-beginner-guide-first-deposit-step-title {
        font-size: 1.5em;
    }

    .page-beginner-guide-first-deposit-faq-question {
        font-size: 1.2em;
    }
}