/* ========================================
   LOGIN SCREEN - SEAMLESS FULL SCREEN
   No borders, shadows, or card effects
   ======================================== */

.login-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #2952A3;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container.hidden {
    display: none;
}

.login-container.active {
    opacity: 1;
}

.login-container.fade-out {
    opacity: 0;
}

/* Full-screen login image - zoomed to fill screen */
.login-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Clickable hit area - positioned on avatar (right side of panel) */
.login-hit-area {
    position: absolute;
    top: 38%;
    left: 73%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.15s ease;
    /* Subtle hint that it's clickable */
    background: rgba(255, 255, 255, 0.02);
}

/* Hover state - tight around content */
.login-hit-area:hover {
    background: rgba(51, 153, 255, 0.2);
    border: 3px solid #FFB347;
    box-shadow: 0 0 12px rgba(255, 179, 71, 0.4);
    transform: scale(1.01);
}

/* Selected state */
.login-hit-area.selected {
    background: rgba(51, 153, 255, 0.35);
    border: 3px solid #FFB347;
    box-shadow: 0 0 16px rgba(255, 179, 71, 0.6);
    transform: scale(0.99);
}

@media (max-width: 768px) {
    .login-image {
        object-fit: contain;
        background: #2952A3;
    }

    .login-hit-area {
        left: 73%;
        top: 40%;
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   WELCOME SCREEN - "The journey begins"
   ======================================== */

.welcome-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1a3180;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-container.hidden {
    display: none;
}

.welcome-container.active {
    opacity: 1;
}

.welcome-container.fade-out {
    opacity: 0;
}

.welcome-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}