body {
  font-family: sans-serif;
  margin: 0;
  background: #000;
  color: #fff;
}
.container {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: 250px;
  background: #111;
}
.navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.navigation ul li a {
  display: block;
  padding: 15px;
  color: #FF6F00;
  text-decoration: none;
  text-align: center;
}
.navigation ul li a.active-nav,
.navigation ul li a:hover {
  background: #FF6F00;
  color: #000;
}
.content {
  flex: 1;
  padding: 20px;
}
section.hidden {
  display: none;
}
.radio-player {
  text-align: center;
  margin-bottom: 20px;
}
.player-logo {
  width: 80px;
  height: 80px;
}
.play-button {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 18px;
  background: #FF6F00;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.play-button:hover {
  background: #e65c00;
}
.player-box {
  width: 300px;
  height: 125px;
  background-color: #1a1a1a;
  border: 2px solid #FF6F00;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(255, 111, 0, 0.3);
  margin: 20px auto;
}
.mobile-nav {
  display: none;
}
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .mobile-nav .navigation ul {
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .mobile-nav .navigation ul li a {
    display: block;
    padding: 12px 0;
    color: #FF6F00;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
  }
  .mobile-nav .navigation ul li a.active-nav {
    background-color: #FF6F00;
    color: #000;
    font-weight: bold;
  }
  .content {
    margin-bottom: 60px;
    padding: 15px;
  }
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #FF6F00;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1s ease;
}
.splash-content {
  text-align: center;
}
.splash-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}


/* Mobile Layout Improvements */
@media (max-width: 768px) {
  body {
    font-size: 16px;
    background: #000;
  }

  .container {
    flex-direction: column;
    padding-bottom: 60px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #111;
    z-index: 9999;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.7);
  }

  .mobile-nav .navigation ul {
    display: flex;
    justify-content: space-around;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .mobile-nav .navigation ul li a {
    padding: 12px 0;
    font-size: 14px;
    color: #FF6F00;
    display: block;
    text-align: center;
    text-decoration: none;
  }

  .mobile-nav .navigation ul li a.active-nav {
    background-color: #FF6F00;
    color: #000;
    font-weight: bold;
  }

  .content {
    padding: 15px;
  }

  .radio-player {
    text-align: center;
    padding: 10px;
  }

  .player-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  .play-button {
    width: 100%;
    font-size: 18px;
    padding: 10px;
    margin-top: 10px;
  }

  .player-box {
    width: 90%;
    height: 110px;
  }

  form input,
  form textarea,
  form button {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 1em;
    border-radius: 6px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #FF6F00;
  }

  form button {
    background-color: #FF6F00;
    color: #000;
    border: none;
    font-weight: bold;
  }

  h1 {
    font-size: 1.5em;
    text-align: center;
    margin: 20px 0 10px;
  }

  ul#last-played-list {
    font-size: 0.9em;
    padding-left: 20px;
  }
}

/* Fake animated audio visualizer */
.fake-visualizer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 40px;
  margin-top: 10px;
  gap: 4px;
}
.fake-visualizer span {
  width: 6px;
  height: 100%;
  background: #FF6F00;
  display: inline-block;
  animation: bounce 1s infinite ease-in-out;
}
.fake-visualizer span:nth-child(2) {
  animation-delay: 0.1s;
}
.fake-visualizer span:nth-child(3) {
  animation-delay: 0.2s;
}
.fake-visualizer span:nth-child(4) {
  animation-delay: 0.3s;
}
.fake-visualizer span:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 100% {
    transform: scaleY(0.3);
  }
  50% {
    transform: scaleY(1);
  }
}

.now-playing-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.album-art {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #FF6F00;
}
.now-playing-text h2 {
  margin: 0;
  font-size: 1.2em;
  color: #FF6F00;
}