* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top, #151530 0%, #050509 60%, #020206 100%);
    color: #0ff;
    font-family: "Courier New", monospace;
    height: 100vh;
    overflow: hidden;
}

/* Floating avatar ball (inside browser) */

#avatar-ball {
    position: fixed;
    top: 10%;
    right: 10%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #66ffff, #007777);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8),
                0 0 40px rgba(0, 255, 255, 0.4);
    animation: float 4s ease-in-out infinite;
    z-index: 9999;
    cursor: grab;
}

/* subtle breathing / floating */
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Terminal */

#terminal-container {
    position: absolute;
    inset: 10% 10%;
    background: rgba(3, 3, 10, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#terminal-output {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    white-space: pre-wrap;
    font-size: 14px;
    line-height: 1.4;
}

#terminal-input-line {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(10, 10, 30, 0.95);
    border-top: 1px solid rgba(0, 255, 255, 0.4);
}

#prompt {
    color: #0ff;
    margin-right: 8px;
    font-weight: bold;
}

#terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #0ff;
    font-family: "Courier New", monospace;
    font-size: 14px;
    outline: none;
}

/* command & error colors */

.command-text {
    color: #00ff88;
}

.error-text {
    color: #ff4444;
}

#pause-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    font-family: "Courier New", monospace;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,255,255,0.1);
    padding: 6px 12px;
    border: 1px solid rgba(0,255,255,0.3);
    border-radius: 6px;
}

.dot-green, .dot-red {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-green { background: #00ff00; }
.dot-red   { background: #ff3333; }

#visitor-label {
    font-size: 14px;
    color: #ffa500;
}

.dot-orange {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffa500;
    margin-right: 5px;
}

