/* style/beginner-guide-first-deposit.css */
.page-beginner-guide-first-deposit {
    font-family: 'Arial', sans-serif;
    color: #e5e5d1; /* Light text for dark background */
    background-color: #1A1A2E;
}

.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, #1A1A2E 0%, #3a1a4e 100%); /* Darker gradient for hero */
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-first-deposit__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,casino_lights,blur,dark_bg,mega_casino]');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.page-beginner-guide-first-deposit__hero > * {
    position: relative;
    z-index: 1;
}

.page-beginner-guide-first-deposit__title {
    font-size: 3.5em;
    color: #e5e5d1;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-first-deposit__subtitle {
    font-size: 1.3em;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-beginner-guide-first-deposit__button {
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__button--primary {
    background-color: #E94560;
    color: #e5e5d1;
}

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

.page-beginner-guide-first-deposit__button--secondary {
    background-color: #3f3f50;
    color: #e5e5d1;
    border: 1px solid #E94560;
}

.page-beginner-guide-first-deposit__button--secondary:hover {
    background-color: #5f5f6d;
    transform: translateY(-3px);
}

.page-beginner-guide-first-deposit__section {
    padding: 80px 0;
}

.page-beginner-guide-first-deposit__section--white-bg {
    background-color: #0f0f1d;
}

.page-beginner-guide-first-deposit__heading {
    font-size: 2.8em;
    color: #e5e5d1;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

.page-beginner-guide-first-deposit__description {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #ccc;
}

.page-beginner-guide-first-deposit__features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-beginner-guide-first-deposit__feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #1A1A2E;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid rgba(233, 69, 96, 0.3);
}

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

.page-beginner-guide-first-deposit__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px #E94560);
}

.page-beginner-guide-first-deposit__feature-title {
    font-size: 1.8em;
    color: #E94560;
    margin-bottom: 15px;
}

.page-beginner-guide-first-deposit__feature-description {
    font-size: 1em;
    line-height: 1.6;
    color: #b0b0b0;
}

.page-beginner-guide-first-deposit__payment-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-beginner-guide-first-deposit__method-card {
    background-color: #1A1A2E;
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    width: 280px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.page-beginner-guide-first-deposit__method-card:hover {
    transform: translateY(-8px);
    border-color: #E94560;
}

.page-beginner-guide-first-deposit__method-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px #E94560);
}

.page-beginner-guide-first-deposit__method-title {
    font-size: 1.6em;
    color: #E94560;
    margin-bottom: 10px;
}

.page-beginner-guide-first-deposit__method-description {
    font-size: 0.95em;
    color: #b0b0b0;
    line-height: 1.5;
}

.page-beginner-guide-first-deposit__note {
    text-align: center;
    font-size: 0.9em;
    color: #999;
    margin-top: 30px;
}

.page-beginner-guide-first-deposit__section--steps {
    background-color: #0f0f1d;
}

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

.page-beginner-guide-first-deposit__step-item {
    background-color: #1A1A2E;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(233, 69, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.page-beginner-guide-first-deposit__step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3em;
    font-weight: bold;
    color: rgba(233, 69, 96, 0.2);
    line-height: 1;
}

.page-beginner-guide-first-deposit__step-title {
    font-size: 2em;
    color: #E94560;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-beginner-guide-first-deposit__step-description {
    font-size: 1em;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-beginner-guide-first-deposit__step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid rgba(233, 69, 96, 0.2);
}

.page-beginner-guide-first-deposit__link {
    color: #E94560;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-beginner-guide-first-deposit__link:hover {
    color: #d13a52;
    text-decoration: underline;
}

.page-beginner-guide-first-deposit__section--promotions {
    background-color: #1A1A2E;
}

.page-beginner-guide-first-deposit__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 800px;
}

.page-beginner-guide-first-deposit__promo-list li {
    background-color: #0f0f1d;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid #E94560;
    font-size: 1.1em;
    line-height: 1.7;
    color: #e5e5d1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit__promo-list li strong {
    color: #E94560;
}

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

.page-beginner-guide-first-deposit__caution-list li {
    background-color: #1A1A2E;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid #5f5f6d;
    font-size: 1.1em;
    line-height: 1.7;
    color: #e5e5d1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-first-deposit__caution-list li strong {
    color: #E94560;
}

.page-beginner-guide-first-deposit__faq-item {
    background-color: #1A1A2E;
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-first-deposit__faq-question {
    font-size: 1.4em;
    color: #E94560;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.page-beginner-guide-first-deposit__faq-answer {
    font-size: 1em;
    color: #b0b0b0;
    line-height: 1.6;
    display: none;
}

.page-beginner-guide-first-deposit__faq-question.active + .page-beginner-guide-first-deposit__faq-answer {
    display: block;
}

.page-beginner-guide-first-deposit__cta-bottom {
    background: linear-gradient(135deg, #E94560 0%, #d13a52 100%);
    padding: 80px 0;
    text-align: center;
    color: #e5e5d1;
}

.page-beginner-guide-first-deposit__cta-bottom .page-beginner-guide-first-deposit__heading {
    color: #e5e5d1;
}

.page-beginner-guide-first-deposit__cta-bottom .page-beginner-guide-first-deposit__heading::after {
    background-color: #e5e5d1;
}

.page-beginner-guide-first-deposit__cta-bottom .page-beginner-guide-first-deposit__description {
    color: #fff;
}

.page-beginner-guide-first-deposit__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Highlight color for keywords */
.page-beginner-guide-first-deposit .highlight {
    color: #E94560;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-beginner-guide-first-deposit__title {
        font-size: 2.8em;
    }
    .page-beginner-guide-first-deposit__heading {
        font-size: 2.2em;
    }
    .page-beginner-guide-first-deposit__features, .page-beginner-guide-first-deposit__payment-methods {
        flex-direction: column;
        align-items: center;
    }
    .page-beginner-guide-first-deposit__feature-item, .page-beginner-guide-first-deposit__method-card {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-first-deposit__hero {
        padding: 80px 0;
    }
    .page-beginner-guide-first-deposit__title {
        font-size: 2.2em;
    }
    .page-beginner-guide-first-deposit__subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide-first-deposit__heading {
        font-size: 1.8em;
    }
    .page-beginner-guide-first-deposit__step-by-step {
        grid-template-columns: 1fr;
    }
    .page-beginner-guide-first-deposit__step-number {
        font-size: 2.5em;
    }
    .page-beginner-guide-first-deposit__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide-first-deposit__cta-buttons {
        flex-direction: column;
    }
    .page-beginner-guide-first-deposit__cta-buttons .page-beginner-guide-first-deposit__button {
        width: 80%;
        margin: 0 auto 15px;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-first-deposit__title {
        font-size: 1.8em;
    }
    .page-beginner-guide-first-deposit__heading {
        font-size: 1.5em;
    }
    .page-beginner-guide-first-deposit__subtitle, .page-beginner-guide-first-deposit__description, .page-beginner-guide-first-deposit__feature-description, .page-beginner-guide-first-deposit__method-description, .page-beginner-guide-first-deposit__step-description, .page-beginner-guide-first-deposit__promo-list li, .page-beginner-guide-first-deposit__caution-list li, .page-beginner-guide-first-deposit__faq-answer {
        font-size: 0.9em;
    }
    .page-beginner-guide-first-deposit__feature-title, .page-beginner-guide-first-deposit__method-title, .page-beginner-guide-first-deposit__step-title, .page-beginner-guide-first-deposit__faq-question {
        font-size: 1.2em;
    }
}