@keyframes PuzzleCard_fadeIn__kF1ed {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes PuzzleCard_slideUp__Z8MX4 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes PuzzleCard_pulse__Kv9w2 {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes PuzzleCard_glow___5kf3 {
  0%,
  100% {
    box-shadow: 0 0 5px color-mix(in srgb, var(--primary-color) calc(var(--box-glow-intensity, 1) * 100%), transparent);
  }
  50% {
    box-shadow: 0 0 20px color-mix(in srgb, var(--primary-color) calc(var(--box-glow-intensity, 1) * 100%), transparent), 0 0 30px color-mix(in srgb, var(--primary-light) calc(var(--box-glow-intensity, 1) * 100%), transparent);
  }
}
.PuzzleCard_animate-fade-in__XzG8J {
  animation: PuzzleCard_fadeIn__kF1ed 0.3s ease :local(ease);
}
.PuzzleCard_animate-slide-up__tOYZR {
  animation: PuzzleCard_slideUp__Z8MX4 0.3s ease :local(ease);
}
.PuzzleCard_animate-pulse__Eahoi {
  animation: PuzzleCard_pulse__Kv9w2 2s ease-in-out infinite;
}
.PuzzleCard_animate-glow__cJoUE {
  animation: PuzzleCard_glow___5kf3 2s ease-in-out infinite;
}
.PuzzleCard_cardLink__GPZgo {
  display: block;
  text-decoration: none;
}
.PuzzleCard_card__c7QwO {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--primary-alpha-15);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.PuzzleCard_card__c7QwO:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--primary-rgb), 0.4);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(var(--primary-rgb), calc(var(--box-glow-intensity, 1) * 0.2)), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.PuzzleCard_card__c7QwO .ant-card-body {
  padding: 48px 64px;
}
.PuzzleCard_header__Fwcud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.PuzzleCard_solvedBadge__itr_k {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
  border: 1px solid rgba(16, 185, 129, 0.5);
  border-radius: 9999px;
  color: #10b981;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.PuzzleCard_solvedBadge__itr_k svg {
  color: #10b981;
}
.PuzzleCard_cardBody__kmvIy {
  padding: 0 24px;
}
.PuzzleCard_successRateBadge__PpWXG {
  font-weight: 500;
  text-shadow: 0 0 calc(var(--text-glow-intensity, 1) * 10px) color-mix(in srgb, currentColor calc(var(--text-glow-intensity, 1) * 100%), transparent);
}
.PuzzleCard_type__AFiB3 {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-secondary);
}
.PuzzleCard_title__LaFvE {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 0 8px rgba(var(--primary-rgb), calc(var(--text-glow-intensity, 1) * 0.35));
}
.PuzzleCard_authors__OT920 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.PuzzleCard_authorAvatar__wVCqu {
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  border: 2px solid var(--bg-card);
  margin-left: -8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}
.PuzzleCard_authorAvatar__wVCqu:first-child {
  margin-left: 0;
}
.PuzzleCard_authorAvatar__wVCqu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.PuzzleCard_authorAvatar__wVCqu svg {
  width: 14px;
  height: 14px;
  color: var(--text-secondary);
}
.PuzzleCard_authorNames___oC_U {
  font-size: 14px;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.PuzzleCard_stats__IEqVv {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}
.PuzzleCard_statItem__Gjw0g {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--text-secondary);
}
.PuzzleCard_statIcon__9AfAf {
  color: var(--neon-cyan);
  filter: drop-shadow(0 0 4px rgba(var(--primary-rgb), calc(var(--text-glow-intensity, 1) * 0.5)));
}
.PuzzleCard_footer__hMMUs {
  margin-top: auto;
}
.PuzzleCard_successRate__6_GW_ {
  position: relative;
  height: 20px;
  background: var(--bg-secondary);
  border-radius: 9999px;
  overflow: hidden;
}
.PuzzleCard_successBar__k8lEB {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 9999px;
  transition: width 0.3s ease;
  animation: PuzzleCard_shimmer__Ts1qQ 2s linear infinite;
}
.PuzzleCard_successBar__k8lEB.PuzzleCard_rateHigh__TEqSo {
  background: linear-gradient(90deg, #10b981, #34d399, #10b981);
  background-size: 200% 100%;
  box-shadow: 0 0 10px rgba(16, 185, 129, calc(var(--box-glow-intensity, 1) * 0.5));
}
.PuzzleCard_successBar__k8lEB.PuzzleCard_rateMedium__p64Qb {
  background: linear-gradient(90deg, #06b6d4, #22d3ee, #06b6d4);
  background-size: 200% 100%;
  box-shadow: 0 0 10px rgba(6, 182, 212, calc(var(--box-glow-intensity, 1) * 0.5));
}
.PuzzleCard_successBar__k8lEB.PuzzleCard_rateLow__SSxTX {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  background-size: 200% 100%;
  box-shadow: 0 0 10px rgba(245, 158, 11, calc(var(--box-glow-intensity, 1) * 0.5));
}
.PuzzleCard_successBar__k8lEB.PuzzleCard_rateVeryLow__lTCp_ {
  background: linear-gradient(90deg, #ef4444, #f87171, #ef4444);
  background-size: 200% 100%;
  box-shadow: 0 0 10px rgba(239, 68, 68, calc(var(--box-glow-intensity, 1) * 0.5));
}
@keyframes PuzzleCard_shimmer__Ts1qQ {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.PuzzleCard_successText__ylHRr {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 12px;
  color: var(--text-primary);
  font-weight: 500;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
}

