@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&family=Inter:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
}

.font-fell {
    font-family: 'IM Fell English SC', serif;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #4ade80;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #22c55e;
}

/* Animations */
@keyframes pulse-necrotic {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse-necrotic {
    animation: pulse-necrotic 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom glow effect */
.glow-necrotic {
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.glow-necrotic:hover {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.8);
}

/* Skull decoration */
.skull-decoration {
    position: absolute;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}