/* style/beginner-guide-first-deposit.css */
.page-beginner-guide-first-deposit {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* White text for overall readability on dark background */
    background-color: #0A192F; /* Main background color */
}

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

.page-beginner-guide-first-deposit__hero {
    background: linear-gradient(135deg, #0A192F 0%, #30194F 100%); /* Dark gradient for hero */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-first-deposit__hero-title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-beginner-guide-first-deposit__hero-title .highlight {
    color: #FFD700; /* Auxiliary color for highlight */
}

.page-beginner-guide-first-deposit__hero-subtitle {
    font-size: 1.5em;
    color: #CCCCCC;
    margin-bottom: 40px;
}

.page-beginner-guide-first-deposit__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.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: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-beginner-guide-first-deposit__btn--primary {
    background-color: #FFD700; /* Auxiliary color for primary button */
    color: #0A192F;
    border: 2px solid #FFD700;
}

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

.page-beginner-guide-first-deposit__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-beginner-guide-first-deposit__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-beginner-guide-first-deposit__hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-beginner-guide-first-deposit__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-beginner-guide-first-deposit__intro,
.page-beginner-guide-first-deposit__why-deposit,
.page-beginner-guide-first-deposit__guide-steps,
.page-beginner-guide-first-deposit__deposit-methods,
.page-beginner-guide-first-deposit__first-deposit-bonus,
.page-beginner-guide-first-deposit__faq-troubleshooting,
.page-beginner-guide-first-deposit__safety-tips,
.page-beginner-guide-first-deposit__cta-final {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-beginner-guide-first-deposit__intro p,
.page-beginner-guide-first-deposit__why-deposit p,
.page-beginner-guide-first-deposit__guide-steps p,
.page-beginner-guide-first-deposit__deposit-methods p,
.page-beginner-guide-first-deposit__first-deposit-bonus p,
.page-beginner-guide-first-deposit__faq-troubleshooting p,
.page-beginner-guide-first-deposit__safety-tips p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-beginner-guide-first-deposit__intro a,
.page-beginner-guide-first-deposit__guide-steps a,
.page-beginner-guide-first-deposit__first-deposit-bonus a,
.page-beginner-guide-first-deposit__faq-troubleshooting a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-beginner-guide-first-deposit__intro a:hover,
.page-beginner-guide-first-deposit__guide-steps a:hover,
.page-beginner-guide-first-deposit__first-deposit-bonus a:hover,
.page-beginner-guide-first-deposit__faq-troubleshooting a:hover {
    text-decoration: underline;
}

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

.page-beginner-guide-first-deposit__feature-item {
    background-color: #1a2a47; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-beginner-guide-first-deposit__feature-item:hover {
    transform: translateY(-10px);
}

.page-beginner-guide-first-deposit__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

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

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

.page-beginner-guide-first-deposit__steps-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.page-beginner-guide-first-deposit__step-item {
    background-color: #1a2a47;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-beginner-guide-first-deposit__step-number {
    background-color: #FFD700;
    color: #0A192F;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-beginner-guide-first-deposit__step-item h3 {
    color: #FFD700;
    font-size: 1.8em;
    margin-bottom: 20px;
}

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

.page-beginner-guide-first-deposit__step-item ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

.page-beginner-guide-first-deposit__step-item ul li {
    background-color: #0A192F;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #E0E0E0;
    border-left: 4px solid #FFD700;
    font-size: 1.05em;
}

.page-beginner-guide-first-deposit__step-image {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-first-deposit__cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #0A192F;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #FFD700;
}

.page-beginner-guide-first-deposit__cta-block p {
    font-size: 1.6em;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-beginner-guide-first-deposit__method-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-first-deposit__method-list li {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__method-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-beginner-guide-first-deposit__method-list h4 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__method-list p {
    color: #E0E0E0;
    font-size: 1em;
}

.page-beginner-guide-first-deposit__first-deposit-bonus {
    background-color: #0A192F;
    text-align: center;
}

.page-beginner-guide-first-deposit__bonus-image {
    max-width: 90%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-beginner-guide-first-deposit__first-deposit-bonus h3 {
    color: #FFD700;
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-beginner-guide-first-deposit__first-deposit-bonus ol,
.page-beginner-guide-first-deposit__first-deposit-bonus ul {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
    padding-left: 25px;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-beginner-guide-first-deposit__first-deposit-bonus ol li,
.page-beginner-guide-first-deposit__first-deposit-bonus ul li {
    margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__cta-text {
    font-size: 1.2em;
    margin-top: 40px;
    font-weight: bold;
}

.page-beginner-guide-first-deposit__faq-item {
    background-color: #1a2a47;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
}

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

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

.page-beginner-guide-first-deposit__contact-support {
    text-align: center;
    margin-top: 40px;
}

.page-beginner-guide-first-deposit__contact-support p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-beginner-guide-first-deposit__safety-tips ul {
    list-style: disc;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
    padding-left: 40px;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-beginner-guide-first-deposit__safety-tips ul li {
    margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__cta-final {
    text-align: center;
    background-color: #0A192F;
    padding-bottom: 80px;
}

.page-beginner-guide-first-deposit__final-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-beginner-guide-first-deposit__final-image {
    max-width: 70%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-beginner-guide-first-deposit__hero-title {
        font-size: 2.8em;
    }
    .page-beginner-guide-first-deposit__hero-subtitle {
        font-size: 1.3em;
    }
    .page-beginner-guide-first-deposit__section-title {
        font-size: 2em;
    }
    .page-beginner-guide-first-deposit__feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-beginner-guide-first-deposit__steps-list {
        gap: 30px;
    }
    .page-beginner-guide-first-deposit__step-item {
        padding: 30px;
    }
    .page-beginner-guide-first-deposit__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
    .page-beginner-guide-first-deposit__step-item h3 {
        font-size: 1.6em;
    }
    .page-beginner-guide-first-deposit__method-list {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide-first-deposit__hero-image,
    .page-beginner-guide-first-deposit__bonus-image,
    .page-beginner-guide-first-deposit__final-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-first-deposit__hero-title {
        font-size: 2.2em;
    }
    .page-beginner-guide-first-deposit__hero-subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide-first-deposit__hero-actions {
        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: 1.8em;
    }
    .page-beginner-guide-first-deposit__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide-first-deposit__step-item {
        padding: 25px;
    }
    .page-beginner-guide-first-deposit__step-item h3 {
        font-size: 1.4em;
    }
    .page-beginner-guide-first-deposit__cta-block p {
        font-size: 1.4em;
    }
    .page-beginner-guide-first-deposit__first-deposit-bonus ol,
    .page-beginner-guide-first-deposit__first-deposit-bonus ul,
    .page-beginner-guide-first-deposit__safety-tips ul {
        padding-left: 20px;
    }
    .page-beginner-guide-first-deposit__final-actions {
        flex-direction: column;
    }
    .page-beginner-guide-first-deposit__hero-image,
    .page-beginner-guide-first-deposit__bonus-image,
    .page-beginner-guide-first-deposit__final-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-first-deposit__hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-first-deposit__hero-subtitle {
        font-size: 1em;
    }
    .page-beginner-guide-first-deposit__section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-first-deposit__btn {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-beginner-guide-first-deposit__step-item h3 {
        font-size: 1.2em;
    }
    .page-beginner-guide-first-deposit__cta-block p {
        font-size: 1.2em;
    }
}