/* style/beginner-guide-registration.css */
.page-beginner-guide-registration {
    font-family: 'Arial', sans-serif;
    color: #f5e6ce; /* Light text for contrast on dark backgrounds */
    background-color: #0A1931; /* Main background color */
}

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

.page-beginner-guide-registration__hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1a2a47 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FFD700;
}

.page-beginner-guide-registration__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    line-height: 1.2;
}

.page-beginner-guide-registration__hero-subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.page-beginner-guide-registration__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A1931; /* Dark text on gold button */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-beginner-guide-registration__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    box-shadow: none;
    margin-top: 20px;
}

.page-beginner-guide-registration__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
}

.page-beginner-guide-registration__cta-button--small {
    padding: 10px 25px;
    font-size: 1em;
}

.page-beginner-guide-registration__cta-button--final {
    margin-top: 40px;
    padding: 18px 45px;
    font-size: 1.4em;
    background-color: #FFD700;
    color: #0A1931;
    border: none;
}

.page-beginner-guide-registration__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

.page-beginner-guide-registration__text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-beginner-guide-registration__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.page-beginner-guide-registration__list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #e0e0e0;
}

.page-beginner-guide-registration__list--small li {
    font-size: 1em;
}

.page-beginner-guide-registration__icon {
    color: #FFD700;
    font-size: 1.4em;
    margin-right: 15px;
    flex-shrink: 0;
}

.page-beginner-guide-registration__icon--check::before {
    content: '\2713'; /* Checkmark icon */
}

.page-beginner-guide-registration__icon--alert::before {
    content: '\26A0'; /* Warning icon */
}

.page-beginner-guide-registration__icon--gift::before {
    content: '\1F381'; /* Gift icon */
}

.page-beginner-guide-registration__steps {
    background-color: #0A1931;
}

.page-beginner-guide-registration__step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 30px;
}

.page-beginner-guide-registration__step-number {
    background-color: #FFD700;
    color: #0A1931;
    font-size: 2.5em;
    font-weight: bold;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.page-beginner-guide-registration__step-content {
    flex-grow: 1;
}

.page-beginner-guide-registration__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-beginner-guide-registration__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-beginner-guide-registration__step-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A1931;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.page-beginner-guide-registration__step-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-beginner-guide-registration__important-notes {
    background-color: #0a1931;
}

.page-beginner-guide-registration__after-registration .page-beginner-guide-registration__sub-section {
    background-color: #1a2a47;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-beginner-guide-registration__sub-section-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-beginner-guide-registration__sub-section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-registration__promotions {
    background-color: #0A1931;
}

.page-beginner-guide-registration__image--full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-registration__faq {
    background-color: #1a2a47;
}

.page-beginner-guide-registration__faq-item {
    background-color: #0A1931;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-registration__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-beginner-guide-registration__faq-answer {
    font-size: 1em;
    color: #e0e0e0;
    line-height: 1.6;
}

.page-beginner-guide-registration__conclusion {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-beginner-guide-registration__hero-title {
        font-size: 2.8em;
    }
    .page-beginner-guide-registration__hero-subtitle {
        font-size: 1.1em;
    }
    .page-beginner-guide-registration__section-title {
        font-size: 2em;
    }
    .page-beginner-guide-registration__step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-beginner-guide-registration__step-number {
        margin-bottom: 20px;
    }
    .page-beginner-guide-registration__list li {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-beginner-guide-registration__hero-title {
        font-size: 2.2em;
    }
    .page-beginner-guide-registration__hero-subtitle {
        font-size: 1em;
    }
    .page-beginner-guide-registration__section-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-registration__step-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-registration__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-beginner-guide-registration__step-number {
        width: 60px;
        height: 60px;
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-beginner-guide-registration__hero-section {
        padding: 80px 0 40px;
    }
    .page-beginner-guide-registration__hero-title {
        font-size: 1.8em;
    }
    .page-beginner-guide-registration__hero-subtitle {
        font-size: 0.9em;
    }
    .page-beginner-guide-registration__section {
        padding: 40px 0;
    }
    .page-beginner-guide-registration__section-title {
        font-size: 1.5em;
    }
    .page-beginner-guide-registration__text, .page-beginner-guide-registration__list li, .page-beginner-guide-registration__faq-answer {
        font-size: 0.95em;
    }
    .page-beginner-guide-registration__faq-question {
        font-size: 1.1em;
    }
    .page-beginner-guide-registration__cta-button--final {
        padding: 15px 30px;
        font-size: 1.2em;
    }
}