/* Simple Password Screen Styles */
.password-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #001122 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
    animation: fadeIn 1s ease-in;
}

.password-screen.hidden {
    display: none;
}

.password-container {
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    box-shadow:
        0 0 20px rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(5px);
    max-width: 300px;
    width: 90%;
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

#password-input {
    padding: 1rem;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #0066ff;
    border-radius: 8px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.5rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

#password-input:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 
        0 0 15px rgba(0, 102, 255, 0.5),
        inset 0 0 10px rgba(0, 170, 255, 0.2);
    background: rgba(0, 0, 0, 0.8);
}

#password-input::placeholder {
    color: #666666;
    letter-spacing: normal;
}

#password-submit {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #0066ff, #00aaff);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

#password-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 5px 15px rgba(0, 102, 255, 0.4),
        0 0 20px rgba(0, 170, 255, 0.3);
    background: linear-gradient(45deg, #0052cc, #0088cc);
}

#password-submit:active {
    transform: translateY(0);
}

.password-error {
    color: #ff4444;
    font-size: 0.9rem;
    text-shadow: 0 0 5px #ff4444;
    animation: errorShake 0.5s ease-in-out;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Responsive */
@media (max-width: 480px) {
    .password-container {
        padding: 2rem 1.5rem;
    }
    
    .site-title {
        font-size: 2rem;
    }
    
    .password-prompt {
        font-size: 1rem;
    }
    
    #password-input {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    #password-submit {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}