.radio-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.radio-title {
  color: var(--accent-color);
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-family: "Slackey", system-ui;
}

.player-container {
  background-color: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.player-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

@media (max-width: 576px) {
  .player-content {
    flex-direction: column;
  }
}

.song-image {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

#title-player {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background-color: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.note-image {
  width: 50%;
  height: 50%;
  opacity: 0.5;
}

.playing-song-title {
  color: var(--text-color);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  width: 100%;
  text-align: center;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.control-button {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

.control-button:hover {
  transform: scale(1.1);
  background-color: var(--hover-color);
}

.control-button svg {
  fill: white;
}

#play-pause-button {
  width: 80px;
  height: 80px;
}

.hidden-audio-player {
  display: none;
}

.no-audio-message {
  margin-top: 1rem;
  color: #888;
  font-style: italic;
}

.player-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.now-playing {
  color: var(--primary-color);
  font-weight: bold;
  display: none;
}

.loading-indicator {
  color: #888;
  display: none;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% { opacity: 0.4; }
  50% { opacity: 1; }
  100% { opacity: 0.4; }
}

/* Penguins styling */
.penguins-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.dancing-penguin {
  position: absolute;
  height: auto;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Responsive penguin container */
@media (max-width: 768px) {
  .penguins-container {
    height: 100%;
  }
}