/* style/beginner-guide-first-deposit-tutorial.css */
.page-beginner-guide-first-deposit-tutorial {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0D1B2A; /* Main background color */
}

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

.page-beginner-guide-first-deposit-tutorial__hero {
    background: linear-gradient(135deg, #0D1B2A 0%, #3a4a5a 100%); /* Dark gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-first-deposit-tutorial__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-beginner-guide-first-deposit-tutorial__hero-subtitle {
    font-size: 1.3em;
    color: #C0C0C0; /* Lighter gray for subtitle */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-first-deposit-tutorial__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold for CTA button */
    color: #0D1B2A; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.page-beginner-guide-first-deposit-tutorial__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-beginner-guide-first-deposit-tutorial__hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit-tutorial__section {
    padding: 60px 0;
    background-color: #1A2B3D; /* Slightly lighter dark background for sections */
    margin-bottom: 20px;
    border-radius: 8px;
}

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

.page-beginner-guide-first-deposit-tutorial__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit-tutorial__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

.page-beginner-guide-first-deposit-tutorial__introduction p, .page-beginner-guide-first-deposit-tutorial__conclusion p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-first-deposit-tutorial__secondary-cta-button {
    display: inline-block;
    background-color: #0D1B2A; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700; /* Gold border */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 30px;
}

.page-beginner-guide-first-deposit-tutorial__secondary-cta-button:hover {
    background-color: #FFD700;
    color: #0D1B2A;
}

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

.page-beginner-guide-first-deposit-tutorial__feature-item {
    background-color: #0D1B2A;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

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

.page-beginner-guide-first-deposit-tutorial__feature-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-beginner-guide-first-deposit-tutorial__feature-item p {
    color: #B0B0B0;
    font-size: 0.95em;
}

.page-beginner-guide-first-deposit-tutorial__method-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-first-deposit-tutorial__method-list li {
    background-color: #0D1B2A;
    padding: 15px 25px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-first-deposit-tutorial__method-list li strong {
    color: #FFD700;
}

.page-beginner-guide-first-deposit-tutorial__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background-color: #0D1B2A;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit-tutorial__step-number {
    background-color: #FFD700; /* Gold circle for step number */
    color: #0D1B2A;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 25px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-beginner-guide-first-deposit-tutorial__step-content h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-beginner-guide-first-deposit-tutorial__step-content p {
    color: #C0C0C0;
    font-size: 1.05em;
    margin-bottom: 15px;
}

.page-beginner-guide-first-deposit-tutorial__step-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-first-deposit-tutorial__notes-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-first-deposit-tutorial__notes-list li {
    background-color: #0D1B2A;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.05em;
    color: #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-first-deposit-tutorial__notes-list li strong {
    color: #FFD700;
}

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

.page-beginner-guide-first-deposit-tutorial__faq-item {
    background-color: #0D1B2A;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-beginner-guide-first-deposit-tutorial__faq-item h3 {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-beginner-guide-first-deposit-tutorial__faq-item p {
    color: #C0C0C0;
    font-size: 1em;
    margin-top: 10px;
    margin-bottom: 0;
    display: none; /* Hidden by default, toggled by JS */
}

.page-beginner-guide-first-deposit-tutorial__faq-item.active p {
    display: block;
}

.page-beginner-guide-first-deposit-tutorial__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

.page-beginner-guide-first-deposit-tutorial__small-text {
    font-size: 0.9em;
    color: #A0A0A0;
    margin-top: 30px;
}

.page-beginner-guide-first-deposit-tutorial .highlight {
    color: #FFD700;
}

.page-beginner-guide-first-deposit-tutorial .inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-beginner-guide-first-deposit-tutorial .inline-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-beginner-guide-first-deposit-tutorial__mt-40 {
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-beginner-guide-first-deposit-tutorial__hero {
        padding: 80px 0;
    }

    .page-beginner-guide-first-deposit-tutorial__hero-title {
        font-size: 2.5em;
    }

    .page-beginner-guide-first-deposit-tutorial__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-beginner-guide-first-deposit-tutorial__step-item {
        flex-direction: column;
        text-align: center;
    }

    .page-beginner-guide-first-deposit-tutorial__step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .page-beginner-guide-first-deposit-tutorial__step-content h3 {
        font-size: 1.4em;
    }

    .page-beginner-guide-first-deposit-tutorial__step-content p {
        font-size: 1em;
    }

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

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

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

    .page-beginner-guide-first-deposit-tutorial__cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

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

    .page-beginner-guide-first-deposit-tutorial__feature-item {
        padding: 20px;
    }

    .page-beginner-guide-first-deposit-tutorial__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
}