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

body {
    background-color: #121212;
    color: #000000;
    cursor: none;
}

footer{
    font-size: 14px;
}

footer a {
    font-weight: bold;
    transition:color 0.3s ease;
}

footer .text-red-500{
    font-size: 1.2em;
    animation: pulse 1.5s infinite;
}


.cursor {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    background: rgba(56, 189, 248, 0.5);
    mix-blend-mode: difference;
    z-index: 9999;
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(56, 189, 248, 0.3);
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.3s ease, width 0.2s ease, height 0.2s ease;
}

.interactive-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: none;
}

.interactive-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(120, 207, 244, 0.2), transparent);
    transition: all 0.5s ease;
    cursor: none;
}

.interactive-btn:hover::before {
    left: 100%;
    cursor: none;
}

.interactive-btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 10px rgba(18, 81, 108, 0.5);
    cursor: none;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #1252dc, #3b82f6);
    border-radius: 10px;
}

body {
    background: linear-gradient(45deg, #121212, #1e1e1e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

.glitch {
    position: relative;
    color: #38bdf8;
    text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff;
    animation: glitch 725ms infinite;
}

.glitch span {
    position: absolute;
    top: 0;
    left: 0;
}

.glitch span:first-child {
    animation: glitch 500ms infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    transform: translate(-0.04em, -0.03em);
    opacity: 0.75;
}

.glitch span:last-child {
    animation: glitch 375ms infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    transform: translate(0.04em, 0.03em);
    opacity: 0.75;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff;
    }
    15% {
        text-shadow: 0.05em 0 0 #00fffc, -0.03em -0.04em 0 #fc00ff;
    }
    16% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff;
    }
    49% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.035em 0 #fc00ff;
    }
    50% {
        text-shadow: 0.05em 0.035em 0 #00fffc, -0.03em 0 0 #fc00ff;
    }
    99% {
        text-shadow: 0.05em 0.035em 0 #00fffc, -0.03em 0 0 #fc00ff;
    }
    100% {
        text-shadow: -0.05em 0 0 #00fffc, 0.05em -0.04em 0 #fc00ff;
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#dynamicRole {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.interactive-btn:hover::before {
    left: 100%;
}

.interactive-btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

