#arc-counter {
    position: fixed;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 68, 68, 0.85);  /* 🔴 semi-transparent red */
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 99999;
    animation: pulse 2s infinite;  /* ✨ glowing effect */
    transition: transform 0.6s ease, opacity 0.6s ease;
    backdrop-filter: blur(6px);    /* subtle glass effect */
}

/* glowing pulse */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7);
    }
    70% {
        box-shadow: 0 0 12px 10px rgba(255, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0);
    }
}

.arc-icon {
    font-size: 14px;
    background: #fff;
    color: #ff4444;
    border-radius: 50%;
    padding: 2px 6px;
    font-weight: bold;
}

#arc-close {
    margin-left: 8px;
    cursor: pointer;
    font-size: 12px;
    opacity: 0.8;
}

#arc-close:hover {
    opacity: 1;
}

#arc-counter.kick {
    transform: translateX(-150%) rotate(-20deg);
    opacity: 0;
}

/* 📱 Mobile adjustments */
@media (max-width: 480px) {
    #arc-counter {
        font-size: 12px;
        padding: 6px 10px;
        bottom: 10px;
        left: 10px;
    }
    .arc-icon {
        font-size: 12px;
        padding: 2px 5px;
    }
    #arc-close {
        font-size: 11px;
    }
}
