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

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

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

.page-newbie-guide-first-deposit__hero {
    background: linear-gradient(135deg, #1A2B4C 0%, #3a5078 100%); /* Darker blue to slightly lighter blue */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-newbie-guide-first-deposit__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23F0B90B" stroke-width="0.1"/></pattern><rect width="100%" height="100%" fill="url(%23smallGrid)" opacity="0.05" /></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

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

.page-newbie-guide-first-deposit__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #F0B90B; /* Auxiliary color for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide-first-deposit__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-newbie-guide-first-deposit__button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    cursor: pointer;
}

.page-newbie-guide-first-deposit__button--primary {
    background-color: #F0B90B; /* Auxiliary color */
    color: #1A2B4C; /* Primary color for text */
    border: 2px solid #F0B90B;
}

.page-newbie-guide-first-deposit__button--primary:hover {
    background-color: #e0a80a;
    transform: translateY(-2px);
}

.page-newbie-guide-first-deposit__button--secondary {
    background-color: #1A2B4C; /* Primary color */
    color: #F0B90B; /* Auxiliary color for text */
    border: 2px solid #F0B90B;
}

.page-newbie-guide-first-deposit__button--secondary:hover {
    background-color: #2c416e;
    transform: translateY(-2px);
}

.page-newbie-guide-first-deposit__hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-first-deposit__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-newbie-guide-first-deposit__section:last-of-type {
    border-bottom: none;
}

.page-newbie-guide-first-deposit__section-title {
    font-size: 2.5em;
    color: #1A2B4C; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-newbie-guide-first-deposit__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #F0B90B; /* Auxiliary color */
    border-radius: 2px;
}

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

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

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

.page-newbie-guide-first-deposit__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-newbie-guide-first-deposit__feature-title {
    font-size: 1.6em;
    color: #1A2B4C; /* Primary color */
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-newbie-guide-first-deposit__methods .page-newbie-guide-first-deposit__grid--methods {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-newbie-guide-first-deposit__method-card {
    background-color: #f0f4f7;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-left: 5px solid #F0B90B;
}

.page-newbie-guide-first-deposit__method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: block;
    margin-left: 0;
}

.page-newbie-guide-first-deposit__method-title {
    font-size: 1.8em;
    color: #1A2B4C;
    margin-bottom: 15px;
}

.page-newbie-guide-first-deposit__method-card p {
    color: #555;
    margin-bottom: 15px;
}

.page-newbie-guide-first-deposit__list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.page-newbie-guide-first-deposit__list li {
    margin-bottom: 8px;
    color: #444;
    position: relative;
    padding-left: 25px;
}

.page-newbie-guide-first-deposit__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #F0B90B;
}

.page-newbie-guide-first-deposit__payment-methods-image {
    max-width: 90%;
    height: auto;
    margin: 50px auto 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-newbie-guide-first-deposit__step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 90px;
}

.page-newbie-guide-first-deposit__step-number {
    position: absolute;
    left: 20px;
    top: 30px;
    width: 50px;
    height: 50px;
    background-color: #1A2B4C; /* Primary color */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-first-deposit__step-title {
    font-size: 1.8em;
    color: #1A2B4C;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-newbie-guide-first-deposit__step-item p {
    color: #555;
    margin-bottom: 15px;
}

.page-newbie-guide-first-deposit__link {
    color: #F0B90B; /* Auxiliary color */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.page-newbie-guide-first-deposit__ui-image {
    max-width: 90%;
    height: auto;
    margin: 50px auto 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-newbie-guide-first-deposit__offers .page-newbie-guide-first-deposit__offer-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
    text-align: left;
}

.page-newbie-guide-first-deposit__offers .page-newbie-guide-first-deposit__offer-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #F0B90B;
    font-size: 1.1em;
    color: #444;
}

.page-newbie-guide-first-deposit__offers .page-newbie-guide-first-deposit__offer-list li strong {
    color: #1A2B4C;
}

.page-newbie-guide-first-deposit__offer-image {
    max-width: 80%;
    height: auto;
    margin: 50px auto 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-newbie-guide-first-deposit__list--important li::before {
    content: '⚠️';
    color: #F0B90B;
}

.page-newbie-guide-first-deposit__support-image {
    max-width: 70%;
    height: auto;
    margin: 50px auto 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-newbie-guide-first-deposit__faq-item {
    background-color: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border-left: 3px solid #1A2B4C;
}

.page-newbie-guide-first-deposit__faq-question {
    font-size: 1.4em;
    color: #1A2B4C;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-newbie-guide-first-deposit__faq-answer {
    color: #555;
    font-size: 1.05em;
}

.page-newbie-guide-first-deposit__cta-footer {
    background-color: #1A2B4C; /* Primary color */
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.page-newbie-guide-first-deposit__cta-footer .page-newbie-guide-first-deposit__section-title {
    color: #F0B90B; /* Auxiliary color */
}

.page-newbie-guide-first-deposit__cta-footer .page-newbie-guide-first-deposit__section-title::after {
    background-color: #ffffff;
}

.page-newbie-guide-first-deposit__cta-footer .page-newbie-guide-first-deposit__text {
    color: #e0e0e0;
}

.page-newbie-guide-first-deposit__button-group {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-newbie-guide-first-deposit__title {
        font-size: 2.5em;
    }
    .page-newbie-guide-first-deposit__subtitle {
        font-size: 1.1em;
    }
    .page-newbie-guide-first-deposit__section-title {
        font-size: 2em;
    }
    .page-newbie-guide-first-deposit__grid {
        grid-template-columns: 1fr;
    }
    .page-newbie-guide-first-deposit__hero-image,
    .page-newbie-guide-first-deposit__payment-methods-image,
    .page-newbie-guide-first-deposit__ui-image,
    .page-newbie-guide-first-deposit__offer-image,
    .page-newbie-guide-first-deposit__support-image {
        max-width: 100%;
    }
    .page-newbie-guide-first-deposit__step-item {
        padding-left: 20px;
        padding-top: 80px;
    }
    .page-newbie-guide-first-deposit__step-number {
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .page-newbie-guide-first-deposit__title {
        font-size: 2em;
    }
    .page-newbie-guide-first-deposit__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-newbie-guide-first-deposit__section-title {
        font-size: 1.8em;
    }
    .page-newbie-guide-first-deposit__method-title,
    .page-newbie-guide-first-deposit__feature-title,
    .page-newbie-guide-first-deposit__step-title,
    .page-newbie-guide-first-deposit__faq-question {
        font-size: 1.4em;
    }
    .page-newbie-guide-first-deposit__text,
    .page-newbie-guide-first-deposit__list li,
    .page-newbie-guide-first-deposit__faq-answer {
        font-size: 0.95em;
    }
}