/* Base styles */

/*hhfkjhf*/
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: 
        linear-gradient(180deg, #0f1c2e 0%, #000000 100%),
        url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAEklEQVR42mO8d+/efwYsgAmvAwAwTwL0mI5DBgAAAABJRU5ErkJggg==');
    background-repeat: no-repeat, repeat;
    background-attachment: fixed;
    background-size: cover, auto;
    color: white;
}

/* Top bar layout */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 80px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.3);

    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

    position: relative;
    overflow: hidden;
}


.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: -300px;
}

.logo {
    height: 60px; /* visually bigger, fits within 80px bar */
    max-width: none;
    object-fit: contain;
}


/* Button nav container */
.nav-buttons a {
    margin-left: 15px;
    text-decoration: none;
}

/* Button style */
button {
    background: rgba(255, 255, 255, 0.1); /* translucent white */
    color: white;
    padding: 10px 20px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3); /* subtle outer border */
    border-radius: 8px;
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

button {
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}


button:hover {
    background-color: #3a6bd4;
}

<div id="radioPlayer" style="
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  width: 400px;
  margin: auto;
  color: white;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
">
  <img id="albumCover" src="https://via.placeholder.com/200x200?text=No+Cover" alt="Album cover" style="
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
  " />
  <div style="font-weight: bold; font-size: 1.2em;" id="songTitle">Loading stream...</div>
  <audio controls autoplay style="width: 100%; margin-top: 15px;">
    <source src="https://icecastweb.radxd461labs.net:8443/FSA" type="audio/mpeg" />
    Your browser does not support the audio element.
  </audio>
</div>



/* Optional: make responsive */
@media (max-width: 600px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-buttons {
        margin-top: 10px;
    }
}
