:root{
    --background-color: #fff;
    --text-color: #fff;
    --primary-color: #6200ea;
    --primary-color-dark : #3f009a;
    --primary-color-light : #e8d9ff;
    --secondary-color: #000;
    --tertiary-color: #ffeb3b;
    --quaternary-color: #ff8c00;
    --fifth-color: #4caf50;
    --sixth-color: #f44336;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    overflow-x: hidden;
}

#floating-cat {
    position: fixed;
    left: 16px;
    bottom: 0;
    z-index: 99999;
    width: 64px;
    height: auto;
    max-width: 25vw;
    pointer-events: auto;
    user-select: none;
    -webkit-user-drag: none;
    image-rendering: pixelated;
    cursor: pointer;
    transition: transform 140ms ease, opacity 160ms ease;
    will-change: transform, opacity;
    transform-origin: center bottom;
}

#floating-cat.cat-swap-anim {
    transform: scale(0.95);
    opacity: 0.9;
}

/* Smaller on very small screens */
@media (max-width: 420px) {
    #floating-cat {
        width: 32px;
        left: 12px;
        bottom: 0;
    }
}