@keyframes subtle-glow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
    }
    50% {
        box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
    }
}

.glow-avatar {
    animation: subtle-glow 4s ease-in-out infinite;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050b14;
}

::-webkit-scrollbar-thumb {
    background: #1b2f4a;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #06b6d4;
}

@keyframes god-mode-glow {
    0%, 100% {
        box-shadow: inset 0 0 15px rgba(168, 85, 247, 0.2), 0 0 15px rgba(168, 85, 247, 0.3);
        border-color: rgba(168, 85, 247, 0.6);
    }
    50% {
        box-shadow: inset 0 0 25px rgba(168, 85, 247, 0.4), 0 0 25px rgba(168, 85, 247, 0.7);
        border-color: rgba(192, 132, 252, 0.9);
    }
}

.god-mode-active {
    animation: god-mode-glow 1.5s ease-in-out infinite !important;
}

@keyframes hunger-alert {
    0%, 100% {
        box-shadow: inset 0 0 10px rgba(239, 68, 68, 0.2);
        border-color: rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: inset 0 0 25px rgba(239, 68, 68, 0.6);
        border-color: rgba(239, 68, 68, 0.9);
    }
}

.hunger-critical {
    animation: hunger-alert 0.8s ease-in-out infinite !important;
}

