
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 #00fffc, -0.05em -0.025em 0 #fc00ff;
    }
    14% {
        text-shadow: 0.05em 0 0 #00fffc, -0.05em -0.025em 0 #fc00ff;
    }
    15% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.025em 0 #fc00ff;
    }
    49% {
        text-shadow: -0.05em -0.025em 0 #00fffc, 0.025em 0.025em 0 #fc00ff;
    }
    50% {
        text-shadow: 0.025em 0.05em 0 #00fffc, 0.05em 0 0 #fc00ff;
    }
    99% {
        text-shadow: 0.025em 0.05em 0 #00fffc, 0.05em 0 0 #fc00ff;
    }
    100% {
        text-shadow: -0.025em 0 0 #00fffc, -0.025em -0.025em 0 #fc00ff;
    }
}

.status-dot.online {
    background-color: #00ff88;
    box-shadow: 0 0 10px #00ff88;
}

.status-dot.idle {
    background-color: #ffcc00;
    box-shadow: 0 0 10px #ffcc00;
}

.status-dot.dnd {
    background-color: #ff0055;
    box-shadow: 0 0 10px #ff0055;
}

.status-dot.offline {
    background-color: #666666;
}
body {
    font-family: 'Space Mono', monospace;
    background: #0a0a0a;
    color: #f0f0f0;
    padding-top: 60px;
}
.card {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    width: 600px;
    margin: 0 auto;
    position: relative;
    transition: none;
}
@media (max-width: 768px) {
    .card {
        padding: 2rem !important;
        width: 90%;
        margin: 0 auto;
    }
    .title-wrapper h1 {
        font-size: 2.5rem !important;
    }
.container {
        padding-left: 0;
        padding-right: 0;
    }
}
.skill-tag {
    background: rgba(0, 255, 255, 0.1) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.discord-link {
    background: rgba(88, 101, 242, 0.2) !important;
    border: 1px solid rgba(88, 101, 242, 0.5) !important;
    transition: all 0.3s ease;
}

.discord-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.status-card {
    background: rgba(0, 255, 255, 0.1) !important;
    border: 1px solid rgba(0, 255, 255, 0.3) !important;
}

.glitch-text {
    animation: glitch 2s infinite alternate;
}
.float-animation {
    animation: float 4s ease-in-out infinite;
}

.music-player {
    transition: all 0.3s ease;
    z-index: 1000;
}
.music-player:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.project-card {
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
}
#playBtn {
    transition: all 0.2s ease;
}

#playBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}
