/* ==========================================================================
 * SNAPSMACK ENGINE: Thomas the Bear
 * ==========================================================================
 * Real Thomas image + dedication banner.
 * Tribute to Noah Grey (Greymatter) via the Picasa easter egg.
 * Trigger: Ctrl+Shift+Y
 * ========================================================================== */

.thomas-bear {
    position: fixed;
    transform-origin: bottom center;
    animation: bearDrop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    cursor: pointer;
    z-index: 99999;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.6));
}

@keyframes bearDrop {
    0%   { transform: translateY(-120%) scale(0.3) rotate(-15deg); opacity: 0; }
    60%  { transform: translateY(5%) scale(1.05) rotate(3deg); opacity: 1; }
    80%  { transform: translateY(-3%) scale(0.97) rotate(-1deg); }
    100% { transform: translateY(0%) scale(1) rotate(0deg); opacity: 1; }
}

.thomas-bear img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

/* DEDICATION BANNER */
#thomas-dedication {
    position: fixed; top: 30px; left: 50%; transform: translateX(-50%);
    background: rgba(10,10,10,0.92); border: 1px solid #4ecdc4;
    color: #ccc; padding: 16px 28px;
    font-family: 'Courier New', monospace; font-size: 11px;
    letter-spacing: 2px; text-transform: uppercase; text-align: center;
    z-index: 999999; opacity: 0; transition: opacity 0.8s ease;
    pointer-events: none; white-space: nowrap;
}
#thomas-dedication span { color: #4ecdc4; }
#thomas-dedication.visible { opacity: 1; }
