@import url('http://fonts.cdnfonts.com/css/bradley-hand-2');

@keyframes vibrate {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

.vibrating {
    animation: vibrate 0.3s infinite;
}

body {
    background-color: #0a192f;
    color: white;
}

.playlist-card {
    background: #112240;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    height: 77vh;
    overflow-y: auto;
}

.playlist-card::-webkit-scrollbar {
    width: 6px;
}

.playlist-item {
    background: #233554;
    border-radius: 8px;
    padding: 10px;
}

.playlist-item img,
.playlist-song img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
}

.btn-close {
    font-size: 12px;
}

.playlist-songs {
    padding-left: 20px;
}

.playlist-song {
    background: #112240;
    border-radius: 6px;
    padding: 10px;
}

.track-card {
    background: #112240;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.track-img {
    width: 250px;
    height: 250px;
    border-radius: 10px;
    object-fit: cover;
}

.track-info {
    margin-top: 10px;
}

.current-track {
    transform: scale(1.1);
}

.track-time {
    font-size: 14px;
    color: #97A0AC;
}

.player-controls {
    margin-top: 20px;
}

.player-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #233554;
    color: #fff;
    font-size: 24px;
    border: none;
}

