body {
    text-align: center;
    background-image: url(./images/space.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
    overflow-y: scroll;  /* Scrollbar Enabled */
    height: 170vh;
}

h1 {
    font-size: 5rem;
    color: #4a90e2;
    
    text-shadow: 5px 5px 20px rgba(74, 144, 226, 0.8), 
                 -5px -5px 20px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #4a90e2, 0 0 30px #4a90e2;
    }
    to {
        text-shadow: 0 0 30px #fff, 0 0 40px #4a90e2;
    }
}

footer {
    text-align: center;
    color: #00ffff;
    
    font-size: 1.2rem;
    margin-top: 50px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.set {
    margin: 5% auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.drum {
    outline: none;
    border: 4px solid rgba(255, 255, 255, 0.8);
    font-size: 3rem;
    font-family: 'Orbitron', cursive;
    line-height: 2;
    font-weight: 900;
    color: #ff4081;
    text-shadow: 3px 3px 10px #fff;
    border-radius: 20px;
    width: 120px;
    height: 120px;
    text-align: center;
    margin: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

/* Button hover effect */
.drum:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.9);
}

/* Button press effect */
.pressed {
    transform: scale(0.9);
    box-shadow: 0 0 50px rgba(255, 255, 255, 1);
    /* opacity: 0.5; */
    border-color: #00ffff;
    background-color: rgba(22, 65, 65, 0.3);
}

.music-container {
    margin: auto;
    border: #fff;
    border-radius: 10px;
    color: #00ffff;
    font-size: 2rem;

}

#playPauseButton {
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    background-color: #007BFF;
    color: 00ffff;
    /* transition: background 0.1s; */
}

#playPauseButton:hover {
    background-color: #0056b3;
}

.progress-container {
    margin-top: 20px;
    width: 100%;
}

#progressBar {
    width: 50%;
    cursor: pointer;
}

.time-info {
    margin-top: 10px;
    color: #00ffff;
    font-size: 18px;
    font-weight: bold;
}
/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 17px;
   
}

::-webkit-scrollbar-thumb {
    background-color: #007BFF;
    border-radius: 6px;
    height: 50px;
}

::-webkit-scrollbar-track {
    background: #f3f3f3;
}

/* 📱 Mobile Responsiveness */
@media (max-width: 768px) {
    body{
        font-size: 14px;
    }
    .music-container {
        max-width: 90%;
        padding: 15px;
    }

    button {
        padding: 12px;
        font-size: 16px;
    }

    .time-info {
        font-size: 16px;
    }
}