.art-card {
  position: relative;
  min-height: 580px;
  border-radius: 34px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(57, 255, 136, 0.22), rgba(55, 168, 255, 0.09)),
    rgba(11, 24, 34, 0.86);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.art-card::before {
  content: "";
  position: absolute;
  inset: -35%;
  background: conic-gradient(from 140deg, transparent, rgba(57,255,136,0.18), transparent, rgba(55,168,255,0.12), transparent);
  animation: slow-spin 18s linear infinite;
  opacity: 0.9;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.hero-art {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 552px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 20px 55px rgba(0,0,0,0.36);
}

.profile-chip {
  position: absolute;
  z-index: 4;
  left: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  background: rgba(5, 10, 14, 0.78);
  border: 1px solid rgba(57,255,136,0.35);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.34);
}

.profile-chip img {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(57,255,136,0.8);
}

.profile-chip strong,
.profile-chip span {
  display: block;
}

.profile-chip strong {
  color: #39ff88;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.profile-chip span {
  color: #d7e8df;
  font-weight: 800;
  font-size: 0.84rem;
}

.art-label {
  position: absolute;
  z-index: 5;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 36px rgba(0,0,0,0.32);
  transform: rotate(-4deg);
}

.label-red {
  top: 26px;
  left: 24px;
  color: #fff;
  background: #ff4c61;
  border: 1px solid rgba(255,255,255,0.24);
}

.label-green {
  right: 24px;
  bottom: 112px;
  color: #06110a;
  background: #39ff88;
  border: 1px solid rgba(255,255,255,0.24);
  transform: rotate(4deg);
}

@media (max-width: 900px) {
  .art-card {
    min-height: auto;
  }

  .hero-art {
    height: min(68vw, 520px);
  }
}

@media (max-width: 560px) {
  .hero-art {
    height: 430px;
  }

  .profile-chip {
    left: 18px;
    bottom: 18px;
  }

  .profile-chip img {
    width: 48px;
    height: 48px;
  }

  .art-label {
    font-size: 0.76rem;
  }

  .label-green {
    bottom: 92px;
  }
}
