.wkn-mascot-runner {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--wkn-mascot-size, 170px);
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 9999;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.3s ease;
    will-change: transform;
}

.wkn-mascot-runner.is-ready {
    opacity: 1;
}

.wkn-mascot-runner canvas,
.wkn-mascot-runner img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 849px) {
    .wkn-mascot-runner {
        width: var(--wkn-mascot-size-mobile, 110px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wkn-mascot-runner {
        top: auto;
        right: 16px;
        bottom: 16px;
        left: auto;
        opacity: 1;
        transform: none !important;
        transition: none;
    }
}
