body {
  background: #111;
  color: #eee;
  font-family: 'Arial', sans-serif;
  text-align: center;
  margin: 0;
  padding: 2rem;
}

.player-container {
  max-width: 600px;
  margin: 0 auto;
}

h1 {
  margin-bottom: 1.5rem;
}

.turntable {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 1rem;
}

.disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #333;
  position: relative;
  animation: spin 4s linear infinite;
  animation-play-state: paused;
  background-color: #111;
  box-shadow:
    inset 0 0 40px #222,
    0 0 10px #000;
}

.disc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background-color: #111;
  display: block;
}

/* Rótulo central simulado */
.label-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-top: -35px;
  margin-left: -35px;
  background: radial-gradient(circle at center, #c62828 0%, #7b0000 80%);
  border: 3px solid #440000;
  border-radius: 50%;
  box-shadow:
    0 0 8px #8b0000 inset,
    0 0 10px #330000;
  z-index: 10;
  pointer-events: none;
}

.controls {
  margin: 1rem 0;
}

.controls button {
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  font-size: 1rem;
  background-color: #444;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.controls button:hover {
  background-color: #666;
}

.playlist {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.playlist li {
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 5px;
  margin-bottom: 0.25rem;
  background-color: #222;
}

.playlist li:hover,
.playlist li.active {
  background-color: #444;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
..platform-icons a {
  width: 60px;
  height: 60px;
  background-color: #fff; /* ou #222, se quiser escuro */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-icons a img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.platform-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
}
.music-footer {
  background-color: #111;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
}

.music-footer .footer-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
}

.platform-grid a img {
  width: 100%;
  max-width: 140px;
  aspect-ratio: 3 / 2; /* agora formato horizontal retangular */
  object-fit: contain;
  border-radius: 6px;  /* cantos mais discretos */
  background-color: #fff;
  padding: 8px;
  transition: transform 0.3s ease;
}


.platform-grid a:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}


