/* =========================================
   Vinyl Sticker Component Styles
   ========================================= */

.vinyl-sticker {
  position: relative;
  width: 12rem;
  height: 12rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .vinyl-sticker {
      /*top: 2rem;*/
      width: 12rem;
      height: 12rem;
  }
}

.vinyl-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.vinyl-outline {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: rotate(2deg);
}

.vinyl-disc {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #1a1a1a;
  animation: spin 8s linear infinite;
}

.vinyl-wrapper:hover .vinyl-disc {
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.groove-1 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 20px solid transparent;
  border-top-color: rgba(56, 56, 56, 0.3);
  border-bottom-color: rgba(56, 56, 56, 0.3);
  pointer-events: none;
}

.groove-2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 40px solid transparent;
  border-left-color: rgba(56, 56, 56, 0.2);
  border-right-color: rgba(56, 56, 56, 0.2);
  pointer-events: none;
}

.vinyl-label {
  width: 5rem;
  height: 5rem;
  background-color: #ffd700;
  border-radius: 50%;
  border: 4px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.label-text {
  font-family: 'Share Tech Mono', monospace;
  font-size: 8px;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: #2a2a2a;
  transform: rotate(-12deg);
  opacity: 0.8;
}

.center-hole {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #f2efe9;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
}

.reflection {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(8px);
}

.music-note {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  color: #3e2723;
  font-size: 1.5rem;
  transform: rotate(12deg);
  animation: bounce 2s infinite;
  opacity: 0.8;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%) rotate(12deg);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
