/* Superman Bot */
#super-bot {
    position: fixed;
    top: 0;
    left: 0;
    width: 25px;
    /* Smaller size */
    height: 25px;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease;
    opacity: 0;
    /* Hidden by default */
}

/* Visible state */
#super-bot.active {
    opacity: 1;
}

.bot-body {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    /* Tech glow */
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.eye {
    width: 5px;
    /* Smaller eyes */
    height: 5px;
    background: #3498db;
    border-radius: 50%;
    box-shadow: 0 0 3px #3498db;
    animation: blink 4s infinite;
}

@keyframes blink {

    0%,
    90%,
    100% {
        transform: scaleY(1);
    }

    95% {
        transform: scaleY(0.1);
    }
}

/* Trail Effect */
.bot-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background: rgba(52, 152, 219, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: fadeOut 0.5s linear forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: scale(0.2);
    }
}