body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    color: #00ff00;
    font-family: 'Courier New', monospace;
}

.container {
    text-align: center;
}

.name-list {
    font-size: 36px;
    list-style: none;
    padding: 0;
}

.name-item {
    margin: 5px 0;
    transition: transform 0.2s ease;
}

.name-item:hover {
    transform: scale(1.25);
}

.pidge-style {
    color: #ffbf00;
    font-size: 62px;
    font-weight: bold;
    text-shadow: 0 0 10px #ffbf00;            
    animation: powerUp 0.5s ease infinite alternate;
    border-radius: 100px;
    padding: 10px;
    margin: 20px;
}

@media screen and (max-width: 500px) {
    .pidge-style {
        font-size: 36px;    
    }
}

@keyframes powerUp {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.8;
        box-shadow: 0 0 10px 10px #ffbf00;
    }
}
.audio-player-container {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #282828;
    color: #fff;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.audio-player {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.audio-controls {
    display: flex;
    align-items: center;
}

.play-button, .pause-button, .stop-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin-right: 10px;
}

.audio-time {
    font-size: 14px;
    margin-left: 10px;
}
.seek-bar {
    width: 100%;
    max-width: 200px;
    margin: 0 10px;
    cursor: pointer;
}

.seek-bar input[type="range"] {
    width: 100%;
    background: #444;
    cursor: pointer;
}

.seek-bar input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
}

.seek-bar input[type="range"]::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
}

.volume-icon-container {
    position: relative;
    margin-left: 10px;
}

.volume-icon {
    font-size: 20px;
    cursor: pointer;
}

.volume-slider {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 100px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.volume-slider input[type="range"] {
    width: 100px;
    height: 30px;
    transform: rotate(-90deg);
}

.volume-slider input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
}

.volume-slider input[type="range"]::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: #fff;
    cursor: pointer;
    border-radius: 50%;
}

.volume-icon-container:hover .volume-slider {
    opacity: 1;
    visibility: visible;
}