/* style/login.css */
.page-login {
    color: #333333; /* Dark text for default light body background */
}

.page-login__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: #000000; /* Dark background for hero */
    text-align: center;
    padding-bottom: 40px; /* Add some padding at the bottom */
}

.page-login__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-login__main-title {
    font-size: 2.8em;
    color: #FCBC45; /* Login button color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-login__hero-description {
    font-size: 1.2em;
    color: #FFFFFF; /* White text on dark background */
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.5;
}

.page-login__hero-image {
    width: 100%;
    max-width: 1000px; /* Max width for the hero image */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-login__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #FFFFFF; /* White background for content sections */
}

.page-login__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-login__section-title {
    font-size: 2.2em;
    color: #000000; /* Black for titles */
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.page-login__section-description {
    font-size: 1.1em;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.page-login__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    text-align: center;
}

.page-login__button--login {
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Black text on login button */
}

.page-login__button--login:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-login__button--register {
    background-color: #FFFFFF; /* Register button color */
    color: #000000; /* Black text on register button */
    border: 2px solid #000000;
}

.page-login__button--register:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.page-login__image {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-login__process-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-login__process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    text-align: left;
}

.page-login__process-step-number {
    background-color: #000000; /* Black step number background */
    color: #FFFFFF; /* White step number text */
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
    flex-shrink: 0;
    margin-right: 15px;
}

.page-login__process-text {
    font-size: 1.05em;
    color: #333333;
    line-height: 1.6;
    flex-grow: 1;
}

.page-login__security-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-login__security-item {
    background-color: #f9f9f9;
    border-left: 4px solid #FCBC45; /* Accent color for security items */
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.05em;
    line-height: 1.6;
    color: #333333;
}

.page-login__faq-items {
    margin-top: 30px;
}

.page-login__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-login__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    background-color: #FCBC45; /* Accent color for FAQ question */
    border-bottom: 1px solid #e0e0e0;
}

.page-login__faq-item[open] .page-login__faq-question {
    border-bottom-color: #d0d0d0;
}

.page-login__faq-question:hover {
    background-color: #e0a53b;
}

.page-login__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-login__faq-item[open] .page-login__faq-toggle {
    transform: rotate(45deg);
}

.page-login__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #333333;
    line-height: 1.6;
    background-color: #FFFFFF;
}

.page-login__cta-section {
    background-color: #000000; /* Dark background for CTA */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.page-login__cta-wrapper {
    max-width: 800px;
}

.page-login__cta-title {
    font-size: 2.5em;
    color: #FCBC45;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-login__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    line-height: 1.5;
}

.page-login__button--play-now {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.2em;
    border-radius: 8px;
}

.page-login__button--play-now:hover {
    background-color: #e0a53b;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-login__main-title {
        font-size: 2em;
    }

    .page-login__hero-description,
    .page-login__section-description,
    .page-login__process-text,
    .page-login__security-item,
    .page-login__faq-question,
    .page-login__faq-answer p,
    .page-login__cta-description {
        font-size: 0.95em;
    }

    .page-login__section-title,
    .page-login__cta-title {
        font-size: 1.8em;
    }

    .page-login__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-login__button--play-now {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-login__hero-image,
    .page-login__image {
        max-width: 100%;
        height: auto;
    }

    .page-login__content-area {
        padding: 40px 15px;
    }

    .page-login__faq-question {
        padding: 15px 20px;
    }
    
    /* Ensure content area images do not overflow on mobile */
    .page-login img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-login__main-title {
        font-size: 1.8em;
    }

    .page-login__section-title,
    .page-login__cta-title {
        font-size: 1.5em;
    }

    .page-login__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    
    .page-login__hero-section {
        padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    }
}