/* style/newbie-guide-first-deposit.css */
.page-newbie-guide-first-deposit {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark backgrounds */
    background-color: #1A1A2E; /* Dark blue background */
}

.page-newbie-guide-first-deposit__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Dark blue to slightly lighter dark blue gradient */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .page-newbie-guide-first-deposit__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
        justify-content: center;
    }
}

.page-newbie-guide-first-deposit__hero-content {
    max-width: 600px;
}

.page-newbie-guide-first-deposit__hero-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-newbie-guide-first-deposit__hero-description {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-newbie-guide-first-deposit__hero-image-wrapper {
    flex-shrink: 0;
}

.page-newbie-guide-first-deposit__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .page-newbie-guide-first-deposit__hero-image {
        max-width: 450px;
    }
}

.page-newbie-guide-first-deposit__section {
    padding: 60px 20px;
    background-color: #1A1A2E;
    color: #E0E0E0;
}

.page-newbie-guide-first-deposit__section--dark {
    background-color: #2a2a4a; /* Slightly lighter dark blue for contrast */
}

.page-newbie-guide-first-deposit__section--gradient {
    background: linear-gradient(135deg, #FFD700 0%, #b39700 100%); /* Gold gradient */
    color: #1A1A2E; /* Dark text on gold background */
}

.page-newbie-guide-first-deposit__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-newbie-guide-first-deposit__section-title--light {
    color: #1A1A2E; /* Dark text on light background */
}

.page-newbie-guide-first-deposit__section-title--light::after {
    background-color: #1A1A2E;
}

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

.page-newbie-guide-first-deposit__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1em;
    text-align: center;
    white-space: nowrap;
}

.page-newbie-guide-first-deposit__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A1A2E; /* Dark text on gold */
    border: 2px solid #FFD700;
}

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

.page-newbie-guide-first-deposit__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text on dark background */
    border: 2px solid #FFD700;
}

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

.page-newbie-guide-first-deposit__button--light {
    background-color: #1A1A2E;
    color: #FFD700;
    border: 2px solid #1A1A2E;
}

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

.page-newbie-guide-first-deposit__center-content {
    text-align: center;
    margin-top: 30px;
}

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

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

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

.page-newbie-guide-first-deposit__advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-newbie-guide-first-deposit__advantage-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-newbie-guide-first-deposit__advantages p {
    color: #CCCCCC;
    line-height: 1.6;
}

.page-newbie-guide-first-deposit__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .page-newbie-guide-first-deposit__steps {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.page-newbie-guide-first-deposit__step-item {
    background-color: #1A1A2E;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-newbie-guide-first-deposit__step-number {
    background-color: #FFD700;
    color: #1A1A2E;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-first-deposit__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-newbie-guide-first-deposit__step-item p {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
}

.page-newbie-guide-first-deposit__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-newbie-guide-first-deposit__payment-method-card {
    background-color: #2a2a4a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-first-deposit__payment-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.page-newbie-guide-first-deposit__payment-method-card h4 {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.page-newbie-guide-first-deposit__payment-method-card p {
    color: #CCCCCC;
    font-size: 0.9em;
}

.page-newbie-guide-first-deposit__checklist {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-newbie-guide-first-deposit__checklist li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #E0E0E0;
    font-size: 1.1em;
    line-height: 1.6;
}

.page-newbie-guide-first-deposit__checklist-icon {
    color: #FFD700;
    margin-right: 15px;
    font-size: 1.4em;
    margin-top: 3px;
}

.page-newbie-guide-first-deposit__text--light {
    color: #1A1A2E;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-newbie-guide-first-deposit__bonus-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.page-newbie-guide-first-deposit__faq {
    margin-top: 40px;
}

.page-newbie-guide-first-deposit__faq-item {
    background-color: #2a2a4a;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-first-deposit__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-newbie-guide-first-deposit__faq-answer {
    color: #CCCCCC;
    line-height: 1.6;
}

.page-newbie-guide-first-deposit__cta {
    background: linear-gradient(90deg, #FFD700 0%, #b39700 100%); /* Gold gradient for CTA */
    padding: 80px 20px;
    text-align: center;
    color: #1A1A2E;
}

.page-newbie-guide-first-deposit__cta-title {
    font-size: 2.5em;
    color: #1A1A2E;
    margin-bottom: 20px;
}

.page-newbie-guide-first-deposit__cta-description {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 40px;
}

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

.page-newbie-guide-first-deposit__section--gradient .highlight {
    color: #1A1A2E;
}

/* Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');