/* ═══════════════════════════════════════════════
   1500 WATTS — Auth Overlay
   No email. No phone. No tracking.
   ═══════════════════════════════════════════════ */

.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.98);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.3s ease;
}

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

.auth-box {
    max-width: 460px;
    width: 100%;
    text-align: center;
}

.auth-logo {
    font-size: 56px;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.7), 0 0 24px rgba(0, 212, 255, 0.3);
    margin-bottom: 16px;
}

.auth-title {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.auth-subtitle {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #ffb000;
    text-shadow: 0 0 6px rgba(255, 176, 0, 0.5);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.auth-input {
    display: block;
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 14px;
    background: #0a0a0a;
    border: 2px solid #004d66;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    letter-spacing: 2px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    border-radius: 2px;
}

.auth-input:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.auth-input::placeholder {
    color: #8a5000;
    letter-spacing: 2px;
}

.auth-btn {
    display: block;
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    background: transparent;
    border: 2px solid #00d4ff;
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    font-size: 18px;
    letter-spacing: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
    border-radius: 2px;
}

.auth-btn:hover {
    background: #003d4d;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.25);
}

.auth-btn:active {
    background: #004d66;
}

.auth-switch {
    font-size: 14px;
    color: #8a5000;
    margin-top: 16px;
    font-family: 'Courier New', monospace;
}

.auth-switch a {
    color: #ffb000;
    text-decoration: none;
    cursor: pointer;
}

.auth-switch a:hover {
    text-shadow: 0 0 6px rgba(255, 176, 0, 0.7);
}

.auth-error {
    color: #ff2040;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    margin-top: 14px;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(255, 32, 64, 0.5);
}

.auth-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.auth-privacy {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #8a3d00;
    line-height: 1.8;
    margin-bottom: 14px;
}

.auth-skip {
    display: inline;
    background: none;
    border: none;
    color: #994d00;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    letter-spacing: 1px;
}

.auth-skip:hover {
    color: #cc6600;
}

/* Auth status in nav */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-username {
    font-size: 14px;
    color: #00d4ff;
    letter-spacing: 1px;
    text-shadow: 0 0 4px rgba(0, 212, 255, 0.4);
}

.nav-logout {
    background: none;
    border: none;
    color: #555;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    cursor: pointer;
    letter-spacing: 1px;
}

.nav-logout:hover {
    color: #ff2040;
}

@media (max-width: 480px) {
    .auth-box {
        max-width: 100%;
    }

    .auth-title {
        font-size: 20px;
        letter-spacing: 3px;
    }

    .auth-input {
        font-size: 16px;
        padding: 14px 16px;
    }

    .auth-btn {
        font-size: 16px;
        letter-spacing: 4px;
    }
}