
/* JOIA Player Styles - Responsive, Glass, Grid, Microinteractions, Mobile First */
.joia-player {
  background: rgba(26,26,26,0.7);
  border-radius: 1.2rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  padding: 1.5rem;
  color: #f3f3f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  font-family: 'Inter', 'Playfair Display', sans-serif;
  transition: box-shadow 0.28s, background 0.28s;
}
.joia-player .jp-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #b87333;
  text-align: center;
}
.joia-player .jp-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: center;
}
.joia-player .jp-controls button {
  background: #b87333;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, transform 0.22s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.joia-player .jp-controls button:hover, .joia-player .jp-controls button:focus {
  background: #e6a06a;
  box-shadow: 0 4px 24px #e6a06a33;
  transform: scale(1.08);
}
.joia-player .jp-time {
  color: #f3f3f3;
  font-size: 1rem;
  min-width: 80px;
  text-align: center;
}
.joia-player .jp-volume {
  width: 80px;
  accent-color: #b87333;
}
.joia-player .jp-progress {
  width: 100%;
  height: 0.5rem;
  background: #1a1a1a;
  border-radius: 0.25rem;
  overflow: hidden;
  margin-top: 0.5rem;
}
.joia-player .jp-progress-bar {
  height: 100%;
  background: #b87333;
  width: 0;
  transition: width 0.22s;
}
.joia-player img {
  max-width: 120px;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
@media (max-width: 480px) {
  .joia-player {
    max-width: 98vw;
    padding: 1rem 0.5rem;
  }
  .joia-player .jp-controls {
    gap: 0.5rem;
  }
  .joia-player img {
    max-width: 80px;
  }
}
@media (min-width: 1024px) {
  .joia-player {
    max-width: 540px;
  }
}
