/* Authentication Status Component Styles */

.auth-status {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9000;
    display: flex;
    gap: 0.5rem;
}

.auth-buttons-guest {
    display: flex;
    gap: 0.5rem;
}

.auth-buttons-user {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.user-email {
    color: #D4AF37;
    font-size: 0.85rem;
    font-weight: 600;
}

.ai-usage {
    color: #C0C0C0;
    font-size: 0.75rem;
}

.ai-usage.warning {
    color: #ff9800;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.auth-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.auth-btn-login {
    background: rgba(0, 0, 0, 0.7);
    color: #D4AF37;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.auth-btn-login:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.auth-btn-signup {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941E 100%);
    color: #000;
    border: 2px solid transparent;
}

.auth-btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.auth-btn-logout {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border: 2px solid rgba(255, 68, 68, 0.5);
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.auth-btn-logout:hover {
    background: rgba(255, 68, 68, 0.3);
    border-color: #ff4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

/* Demo mode: hide auth status */
body[data-demo="true"] .auth-status {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-status {
        top: 0.5rem;
        right: 0.5rem;
        flex-direction: column;
        align-items: flex-end;
    }

    .auth-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .user-email {
        font-size: 0.75rem;
    }

    .ai-usage {
        font-size: 0.7rem;
    }
}

/* Integration with existing KITT styles */
.auth-status * {
    font-family: 'Orbitron', monospace;
}
