/* =========================
   TIMMY SIDEBAR
========================= */

.timmy-sidebar {
    position: fixed;

    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    display: flex;
    flex-direction: column;

    gap: 14px;

    z-index: 50;
}

.sidebar-button {
    width: 82px;
    height: 82px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 6px;

    text-decoration: none;
    color: white;

    background: rgba(0,0,0,0.30);

    border: 1px solid rgba(46,188,255,0.40);
    border-radius: 18px;

    backdrop-filter: blur(8px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.sidebar-button img {
    width: 30px;
    height: 30px;

    object-fit: contain;

    image-rendering: pixelated;

    filter:
        drop-shadow(0 0 5px rgba(255,255,255,0.45))
        drop-shadow(0 0 10px rgba(46,188,255,0.30));
}

.sidebar-button span {
    font-size: 11px;

    line-height: 1;

    text-align: center;

    white-space: nowrap;

    text-shadow:
        0 0 6px rgba(0,0,0,0.9);
}

.sidebar-button:hover {
    transform: translateX(4px) scale(1.04);

    background: rgba(46,188,255,0.14);

    border-color: rgba(46,188,255,0.9);

    box-shadow:
        0 0 14px rgba(46,188,255,0.45),
        inset 0 0 10px rgba(46,188,255,0.12);
}