.skel-combo-container {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.skel-combo {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 16px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(10, 14, 23, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow:
    0 0 24px rgba(59, 130, 246, 0.12),
    0 0 60px rgba(59, 130, 246, 0.06),
    0 8px 32px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  transform: translateX(120%);
  opacity: 0;
  animation: skelComboSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  cursor: pointer;
  min-width: 260px;
  max-width: 360px;
  overflow: hidden;
}

.skel-combo::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 50%, #3b82f6 100%);
  border-radius: 3px 0 0 3px;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.skel-combo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.04) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: skelComboSweep 2s ease-in-out 0.5s;
  pointer-events: none;
}

.skel-combo.skel-combo-out {
  animation: skelComboSlideOut 0.4s cubic-bezier(0.7, 0, 0.84, 0) forwards;
}

.skel-combo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
  animation: skelComboIconPop 0.4s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.skel-combo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.skel-combo-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #f0f4f8;
  letter-spacing: 0.3px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: translateX(-10px);
  opacity: 0;
  animation: skelComboTextIn 0.35s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.skel-combo-context {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(148, 163, 184, 0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform: translateX(-10px);
  opacity: 0;
  animation: skelComboTextIn 0.35s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.skel-combo-skel {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 40%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.2px;
  line-height: 1.3;
  white-space: nowrap;
  text-shadow: none;
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.3));
  transform: translateX(-10px);
  opacity: 0;
  animation: skelComboTextIn 0.35s 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes skelComboSlideIn {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes skelComboSlideOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes skelComboIconPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes skelComboTextIn {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes skelComboSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 600px) {
  .skel-combo-container {
    right: 10px;
    left: auto;
    top: 70px;
  }
  .skel-combo {
    min-width: 0;
    max-width: 220px;
    padding: 10px 14px 10px 12px;
    gap: 10px;
    border-radius: 10px;
  }
  .skel-combo-icon {
    width: 28px;
    height: 28px;
  }
  .skel-combo-name {
    font-size: 0.85rem;
  }
  .skel-combo-context {
    font-size: 0.65rem;
  }
  .skel-combo-skel {
    font-size: 0.78rem;
  }
}
