body {
  margin: 0;
  min-height: 100vh; 
  background: linear-gradient(160deg, #111 0%, #1a0d3c 100%);
  font-family: 'Segoe UI', sans-serif;
}

.dock-outer {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

.dock-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  background-color: rgba(6, 0, 16, 0.85);
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  box-shadow: 0 6px 15px rgba(255, 0, 255, 0.25);
  width: fit-content;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.dock-item {
  width: 55px;
  height: 55px;
  background-color: rgba(116, 104, 136, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.dock-icon {
  font-size: 1.8rem;
}


.dock-item:hover {
  transform: translateY(-5px);
  box-shadow:
    0 8px 15px rgba(255, 255, 255, 0.1),
    0 12px 25px rgba(204, 0, 255, 0.3),
    0 20px 40px rgba(251, 0, 255, 0.2);
}


.dock-label {
  position: absolute;
  top: -1.8rem;
  left: 50%;
  transform: translateX(-10%);
  background: linear-gradient(90deg, #6a00ff, #ff00d4);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  text-shadow: 0 0 3px rgba(0,0,0,0.7);
}

.dock-item:hover .dock-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-12px);
}

.dock-item:hover {
  transform: translateY(-8px) scale(1.1);
}
