.geo-window {
  width: 260px;
  background: #000;
  border: 3px ridge #c0c0c0;
  position: absolute;
  bottom: 20px;       /* 20px from the bottom of the page */
  left: 20px;         /* 20px from the left, adjust if needed */
  font-family: "Courier New", monospace;
  color: #00ffcc;
  box-shadow: 0 0 10px #00ffcc;
  z-index: 999;       /* make sure it floats on top of other content */
}

.geo-titlebar {
  background: linear-gradient(to right, #000080, #000040);
  color: white;
  padding: 4px;
  font-size: 12px;
  cursor: move;
  display: flex;
  justify-content: space-between;
}

.geo-close {
  cursor: pointer;
  color: red;
  font-weight: bold;
}

.geo-body {
  padding: 8px;
  text-align: center;
}

.track {
  font-size: 11px;
  margin-bottom: 6px;
  color: #ff66ff;
  text-transform: uppercase;
}

.controls button {
  background: black;
  color: #00ffcc;
  border: 2px outset #c0c0c0;
  margin: 2px;
  cursor: pointer;
}

.controls button:active {
  border: 2px inset #c0c0c0;
}

.eq {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.bar {
  width: 4px;
  height: 10px;
  background: #00ffcc;
  animation: bounce 0.6s infinite alternate;
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes bounce {
  from { height: 4px; opacity: 0.3; }
  to { height: 18px; opacity: 1; }
}

.playlist {
  margin-top: 10px;
  font-size: 10px;
  text-align: left;
  cursor: pointer;
}

.playlist div:hover {
  color: yellow;
}