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

.page-registration-guide-first-deposit {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-registration-guide-first-deposit__hero {
    background: linear-gradient(135deg, #007bff, #4da3ff);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-registration-guide-first-deposit__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}

.page-registration-guide-first-deposit__hero .page-registration-guide-first-deposit__container {
    position: relative;
    z-index: 1;
}

.page-registration-guide-first-deposit__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

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

.page-registration-guide-first-deposit__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-registration-guide-first-deposit__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-registration-guide-first-deposit__btn--primary {
    background-color: #ffc107;
    color: #0056b3; /* Darker blue for contrast on yellow */
    border: 2px solid #ffc107;
}

.page-registration-guide-first-deposit__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

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

.page-registration-guide-first-deposit__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-registration-guide-first-deposit__btn--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-registration-guide-first-deposit__btn--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

/* Sections */
.page-registration-guide-first-deposit__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-registration-guide-first-deposit__section:nth-of-type(even) {
    background-color: #f0f8ff; /* Lighter blue tint for contrast */
}

.page-registration-guide-first-deposit__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-registration-guide-first-deposit__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #555;
}

/* Why Deposit Section */
.page-registration-guide-first-deposit__why-deposit .page-registration-guide-first-deposit__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-registration-guide-first-deposit__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-registration-guide-first-deposit__feature-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-registration-guide-first-deposit__feature-item p {
    color: #666;
}

/* Guide Steps Section */
.page-registration-guide-first-deposit__guide-steps {
    background-color: #ffffff;
}

.page-registration-guide-first-deposit__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.page-registration-guide-first-deposit__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #fdfdfd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-registration-guide-first-deposit__step-number {
    background-color: #ffc107;
    color: #0056b3; /* Darker blue for contrast */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-registration-guide-first-deposit__step-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-registration-guide-first-deposit__step-item p {
    color: #444;
    max-width: 700px;
    margin-bottom: 20px;
}

.page-registration-guide-first-deposit__step-item a {
    color: #007bff;
    text-decoration: underline;
}

.page-registration-guide-first-deposit__step-item a:hover {
    color: #0056b3;
}

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

.page-registration-guide-first-deposit__method-list li {
    background-color: #e9f5ff;
    border-left: 5px solid #007bff;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #333;
}

.page-registration-guide-first-deposit__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-first-deposit__image--small {
    max-width: 400px;
}

/* Bonuses Section */
.page-registration-guide-first-deposit__bonuses {
    background-color: #f0f8ff;
}

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

.page-registration-guide-first-deposit__offer-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 5px solid #ffc107;
    transition: all 0.3s ease;
}

.page-registration-guide-first-deposit__offer-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-registration-guide-first-deposit__offer-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-registration-guide-first-deposit__offer-card p {
    color: #555;
}

/* FAQ Section */
.page-registration-guide-first-deposit__faq {
    background-color: #ffffff;
}

.page-registration-guide-first-deposit__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.page-registration-guide-first-deposit__faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-registration-guide-first-deposit__faq-question {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-registration-guide-first-deposit__faq-item p {
    color: #444;
}

/* App Download Section */
.page-registration-guide-first-deposit__app-download {
    background: linear-gradient(to right, #007bff, #0056b3);
    color: #ffffff;
}

.page-registration-guide-first-deposit__app-download .page-registration-guide-first-deposit__section-title,
.page-registration-guide-first-deposit__app-download .page-registration-guide-first-deposit__text-block {
    color: #ffffff;
}

.page-registration-guide-first-deposit__app-download .page-registration-guide-first-deposit__btn--primary {
    background-color: #ffc107;
    color: #0056b3; /* Darker blue for contrast */
    border-color: #ffc107;
}

.page-registration-guide-first-deposit__app-download .page-registration-guide-first-deposit__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
}

.page-registration-guide-first-deposit__app-download .page-registration-guide-first-deposit__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.page-registration-guide-first-deposit__app-download .page-registration-guide-first-deposit__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Conclusion Section */
.page-registration-guide-first-deposit__conclusion {
    background-color: #f0f8ff;
}

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

    .page-registration-guide-first-deposit__subtitle {
        font-size: 1.1em;
    }

    .page-registration-guide-first-deposit__section-title {
        font-size: 2em;
    }

    .page-registration-guide-first-deposit__cta-group {
        flex-direction: column;
    }

    .page-registration-guide-first-deposit__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-registration-guide-first-deposit__hero-image {
        width: 200px;
    }

    .page-registration-guide-first-deposit__step-by-step {
        gap: 20px;
    }

    .page-registration-guide-first-deposit__offer-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-registration-guide-first-deposit__title {
        font-size: 2em;
    }

    .page-registration-guide-first-deposit__subtitle {
        font-size: 1em;
    }

    .page-registration-guide-first-deposit__section-title {
        font-size: 1.8em;
    }

    .page-registration-guide-first-deposit__btn {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-registration-guide-first-deposit__hero {
        padding: 60px 0;
    }

    .page-registration-guide-first-deposit__section {
        padding: 40px 0;
    }

    .page-registration-guide-first-deposit__step-title {
        font-size: 1.5em;
    }
    
    .page-registration-guide-first-deposit__step-number {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
}