body {
    font-family: Arial, sans-serif;
    background-color: #000;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #fff;
}

.player {
    background-color: #000;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    position: relative;
}

.logo img {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

h1 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

#track-title, #artist-name {
    font-size: 14px;
    color: gold;
}

.album-cover {
    margin: 15px 0;
}

#album-artwork {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.controls {
    margin: 20px 0;
}

.play-btn {
    background-color: gold;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    color: black;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.play-btn:hover {
    background-color: #f1c232;
}

.audience {
    font-size: 14px;
    margin-top: 10px;
    color: gold;
}

.watermark {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: white;
    z-index: 999;
}

#radio-player {
    width: 100%;
    margin-bottom: 15px;
}

#radio-player::-webkit-media-controls-panel {
    background-color: #000;
}

#radio-player::-webkit-media-controls-play-button {
    background-color: gold;
    color: black;
}
