.vm-wrap {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: Arial, sans-serif;
}

.vm-datos {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,.05);
}

.vm-datos h3,
.vm-subtitle {
  margin-bottom: 16px;
}

.vm-field {
  margin-bottom: 14px;
}

.vm-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.vm-field input,
.vm-field select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-size: 14px;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.vm-card {
  display: block;
  cursor: pointer;
}

.vm-card input[type="radio"] {
  display: none;
}

.vm-card-inner {
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: all .25s ease;
  height: 100%;
}

.vm-card input[type="radio"]:checked + .vm-card-inner {
  border-color: #8b5cf6;
  box-shadow: 0 10px 24px rgba(139, 92, 246, .18);
  transform: translateY(-2px);
}

.vm-img-wrap {
  aspect-ratio: 1 / 1;
  background: #f6f6f6;
  overflow: hidden;
}

.vm-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vm-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 13px;
}

.vm-song {
  padding: 12px;
  text-align: center;
}

.vm-song strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.vm-song span {
  display: block;
  font-size: 13px;
  color: #666;
}

.vm-actions {
  margin-top: 24px;
  text-align: center;
}

.vm-btn {
  background: #8b5cf6;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.vm-btn:hover {
  opacity: .92;
}

#vm-msg {
  margin-top: 18px;
  text-align: center;
  font-weight: bold;
}



@media (max-width: 1024px) {
  .vm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.vm-wrap {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
  font-family: Arial, sans-serif;
}

.vm-subtitle {
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.vm-card {
  cursor: pointer;
}

.vm-card-inner {
  border: 2px solid #e7e7e7;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: all .25s ease;
  height: 100%;
}

.vm-card:hover .vm-card-inner {
  border-color: #8b5cf6;
  box-shadow: 0 10px 24px rgba(139, 92, 246, .18);
  transform: translateY(-2px);
}

.vm-img-wrap {
  aspect-ratio: 1 / 1;
  background: #f6f6f6;
  overflow: hidden;
}

.vm-img-wrap img,
.vm-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vm-noimg {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 13px;
  background: #f6f6f6;
}

.vm-song {
  padding: 12px;
  text-align: center;
}

.vm-song strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.vm-song span {
  display: block;
  font-size: 13px;
  color: #666;
}

.vm-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 9999;
  padding: 20px;
}

.vm-modal-content {
  background: #fff;
  max-width: 520px;
  margin: 40px auto;
  border-radius: 18px;
  padding: 22px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.vm-close-modal {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.vm-modal-song {
  text-align: center;
  margin-bottom: 20px;
}

.vm-modal-img-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 14px;
  border-radius: 14px;
  overflow: hidden;
  background: #f6f6f6;
}

.vm-modal-song h3 {
  margin-bottom: 4px;
}

.vm-modal-song p {
  color: #666;
  margin: 0;
}

.vm-field {
  margin-bottom: 14px;
}

.vm-field label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.vm-field input,
.vm-field select {
  width: 100%;
  padding: 12px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-size: 14px;
}

.vm-actions {
  margin-top: 20px;
  text-align: center;
}

.vm-btn {
  background: #8b5cf6;
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.vm-btn:hover {
  opacity: .92;
}

#vm-msg {
  margin-top: 16px;
  text-align: center;
  font-weight: bold;
}

body.vm-modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .vm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vm-modal-content {
    margin: 20px auto;
    padding: 18px;
  }
}