body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  background: #e0e0e0;
  color: #333;
}

.container {
  width: 960px;
  margin: 0 auto;
  background: white;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  padding: 20px;
}

header {
  background: linear-gradient(to bottom, #6eb6ff, #4a90e2);
  color: white;
  padding: 30px 0;
  text-align: center;
  border-radius: 10px 10px 0 0;
}

nav {
  background: #eee;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ccc;
}

nav a {
  color: #333;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: linear-gradient(to bottom, #fff, #ddd);
  margin: 0 5px;
  box-shadow: inset 0 1px 0 white;
  border: 1px solid #ccc;
}

nav a:hover {
  background: #ccc;
}

h2 {
  color: #4a90e2;
  border-bottom: 1px dashed #aaa;
}

.btn {
  background: linear-gradient(to bottom, #6eb6ff, #4a90e2);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 10px;
  box-shadow: inset 0 1px 0 #aee1ff;
}

.blink {
  color: yellow;
  font-weight: bold;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.gallery img {
  width: 200px;
  margin: 10px;
  border: 3px solid #ccc;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.1);
}

.winamp-player {
  width: 320px;
  background: #2b2b2b;
  color: #00ff00;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  padding: 10px;
  border: 2px solid #999;
  border-radius: 6px;
  box-shadow: inset 0 0 10px #000, 0 0 8px #444;
  margin: 0 auto;
  user-select: none;
}

.winamp-display {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

#track-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.winamp-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

#play-pause {
  background: #444;
  color: #00ff00;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 3px;
}

#play-pause:hover {
  background: #666;
}

#seek-bar {
  flex: 1;
  appearance: none;
  height: 4px;
  background: #00ff00;
  cursor: pointer;
}

#seek-bar::-webkit-slider-thumb {
  appearance: none;
  height: 14px;
  width: 8px;
  background: #333;
  border: 1px solid #00ff00;
}

footer {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85em;
  color: #666;
}
