/* Proxi Assistant - UI Styles */
:root {
    --proxi-bg: #0b0b12;
    --proxi-border: rgba(255, 215, 0, 0.3);
    --proxi-yellow: #FFD700;
    --proxi-text: #fff;
    --proxi-btn-bg: rgba(255, 255, 255, 0.08);
}

/* Floating Bubble */
#proxi-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #000, #1a1a1a);
    border: 2px solid var(--proxi-yellow);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10005;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: proxiPulse 3s infinite;
}

#proxi-bubble:hover {
    transform: scale(1.1);
}

#proxi-bubble img {
    width: 28px;
    height: 28px;
}

#proxi-bubble .notification-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 14px;
    height: 14px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid #000;
    display: none;
}

/* Expanded Panel */
#proxi-panel {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    max-width: 90vw;
    background: var(--proxi-bg);
    border: 1px solid var(--proxi-border);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10005;
    font-family: inherit;
    animation: proxiSlideUp 0.3s ease-out;
}

#proxi-panel.open {
    display: flex;
}

.proxi-header {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.proxi-avatar {
    width: 32px;
    height: 32px;
    background: var(--proxi-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.proxi-title {
    font-weight: 700;
    color: var(--proxi-yellow);
    font-size: 1rem;
}

.proxi-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 4px;
}

.proxi-close:hover {
    color: #fff;
}

.proxi-content {
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.proxi-message {
    font-size: 0.95rem;
    color: #ddd;
    margin-bottom: 15px;
    line-height: 1.5;
}

.proxi-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.proxi-btn {
    background: var(--proxi-btn-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--proxi-text);
    padding: 10px 12px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.proxi-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--proxi-yellow);
}

@keyframes proxiPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}
@keyframes proxiSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
