.lightbulb-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000000;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
    will-change: transform;
    transform-origin: bottom right;
}

.lightbulb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.2s ease-out;
}

.chat-bubble, .chat-window {
    display: none;
    position: fixed;
    background-color: #4ca1af;
    color: #ffffff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: opacity 0.5s, visibility 0.5s;
    z-index: 1000001;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.chat-bubble {
    bottom: 110px;
    right: 40px;
    width: 220px;
}

.chat-window {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 360px;
    height: 350px;
    background-color: #000 !important;
    color: #00ffcc;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace !important;
    font-size: 13px;
    font-style: normal !important;
    line-height: 1.4;
    z-index: 1000001;
    box-shadow: 0 0 40px rgba(0,0,0,0.9);
    border: 1px solid #1a1a1a;
    overflow-y: auto;
}

.terminal-header {
    margin-bottom: 15px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 10px;
}

.terminal-command { color: #fff; font-weight: bold; }
.terminal-system { color: #00ffcc; }
.terminal-info { color: #00ccff; font-weight: bold; }
.terminal-error { color: #ff4444; }
.terminal-success { color: #33ff33; }

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: #111;
    border-radius: 3px;
    margin-bottom: 15px;
    border: 1px solid #222;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: #00ffcc;
    box-shadow: 0 0 10px #00ffcc;
    transition: width 0.4s ease;
}

.access-denied-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    animation: slowPulse 2s infinite ease-in-out;
}

.access-denied-symbol {
    font-size: 50px;
    margin-bottom: 10px;
    color: #ff4444;
    text-shadow: 0 0 20px #ff4444;
}

@keyframes slowPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.95); }
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 15px;
    background: #00ffcc;
    animation: blink 0.8s infinite;
    vertical-align: middle;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
