/**
 * fp-gsap-crane.css
 * Part of SouthKorea theme — extracted from fp-gsap-crane.php
 * @package SouthKorea
 */

#sk-crane-mascot {
    position: fixed;
    width: 68px;
    height: 56px;
    top: 0; left: 0;
    z-index: 100000;
    pointer-events: none;
    opacity: 0;
    transform: translateZ(0);
    will-change: transform, opacity;
    filter: drop-shadow(0 3px 16px rgba(255,205,80,0.5));
    transition: filter .3s;
}
#sk-crane-mascot.sk-crane--perched {
    filter: drop-shadow(0 4px 20px rgba(255,205,80,0.75));
}
.sk-crane-trail {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translateZ(0);
    background: radial-gradient(circle, rgba(255,210,80,.7) 0%, transparent 70%);
}
/* Tooltip nhỏ khi đậu */
#sk-crane-tip {
    position: fixed;
    z-index: 100001;
    pointer-events: none;
    opacity: 0;
    background: rgba(255,205,80,.92);
    color: #2a1800;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    transform: translateZ(0);
    transition: opacity .25s;
}
@media (max-width: 767px) {
    #sk-crane-mascot { width: 50px; height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
    #sk-crane-mascot, .sk-crane-trail, #sk-crane-tip { display: none !important; }
}