body { 
    margin: 0; 
    overflow: hidden; 
    background-color: #000;
    font-family: 'Barriecito', cursive;
    color: white;
}
canvas { 
    display: block; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
}
h3 {
    font-size: 2em;
    margin-bottom: 0;
}
h1 {
    font-size: 4em;
    margin-top: 0;
    margin-bottom: 20px;
}
.audio-player {
    margin: 0 auto;
    max-width: 400px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 10px;
}
#playBtn {
    background-color: #FF69B4;
    color: white;
    border: none;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Barriecito', cursive;
    font-size: 1.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px #FF69B4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
#playBtn:hover {
    background-color: #FF1493;
    box-shadow: 0 0 30px #FF1493;
    transform: scale(1.05);
}
#playBtn:active {
    transform: scale(0.95);
}
#playBtn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
#playBtn:hover::before {
    left: 100%;
}
#playBtn.on-air {
    background-color: #00FF00;
    box-shadow: 0 0 20px #00FF00;
    animation: pulse 1.5s infinite;
}
#playBtn.muted {
    background-color: #FF0000;
    box-shadow: 0 0 20px #FF0000;
    animation: none;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 20px #00FF00;
    }
    50% {
        box-shadow: 0 0 40px #00FF00;
    }
    100% {
        box-shadow: 0 0 20px #00FF00;
    }
}
#volumeSlider {
    -webkit-appearance: none;
    width: 80%;
    height: 15px;
    background: #4CAF50;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 10px;
    box-shadow: 0 0 10px #4CAF50;
}
#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #FF69B4;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF69B4;
}
#volumeSlider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #FF69B4;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF69B4;
}
#trackInfo {
    margin-top: 10px;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 0;
    z-index: 3;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
nav ul li {
    display: inline-block;
    margin: 0 15px;
}
nav ul li a {
    color: #FF69B4;
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #FF1493;
}

#credit {
    position: fixed;
    bottom: 5px;
    right: 5px;
    font-size: 0.7em;
    color: rgba(255, 105, 180, 0.5);
}
#credit a {
    color: inherit;
    text-decoration: none;
}
#credit a:hover {
    text-decoration: underline;
}