body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.counter, .global-counter {
    background: rgba(45, 45, 45, 0.9);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    user-select: none;
    margin-left: 1rem;
}

.counter-container {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
}

.animated-sneef {
    position: fixed;
    font-size: 40px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    user-select: none;
}

@keyframes sneefPop {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.5);
    }

    20% {
        opacity: 1;
        transform: translateY(0) scale(1.2);
    }

    40% {
        transform: translateY(-20px) translateX(10px) scale(1);
    }

    60% {
        transform: translateY(-10px) translateX(-15px) scale(1.1);
    }

    80% {
        transform: translateY(-30px) translateX(20px) scale(0.9);
    }

    100% {
        opacity: 0;
        transform: translateY(-50px) translateX(0) scale(0.5);
    }
}

.animated-sneef.show {
    animation: sneefPop 2s ease-out forwards;
}