/* 反向旋转动画，保持Logo图片在旋转唱片中保持正常朝向 */
@keyframes counter-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

/* 增加唱片大小 */
.vinyl-record-main {
  width: 120px !important;
  height: 120px !important;
  margin-right: 1rem;
  transform-origin: center;
}

/* 保持Logo图片清晰 */
.vinyl-record-logo {
  transform-origin: center;
  object-fit: cover;
  backface-visibility: hidden;
  transform: rotate(0deg);
} 