.dock-container {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  pointer-events: none;
}

.dock-panel {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 8px 12px 12px;
  box-shadow: none;
  pointer-events: all;
}

.dock-item {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 167, 69, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dock-item:hover {
  transform: translateY(-8px) scale(1.15);
  background: rgba(40, 167, 69, 0.95);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.dock-item i {
  font-size: 20px;
  color: #fff;
}

.dock-label {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: rgba(6, 0, 16, 0.95);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

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

@media (max-width: 768px) {
  .dock-container {
    bottom: 10px;
  }
  
  .dock-panel {
    gap: 8px;
    padding: 6px 8px 8px;
  }
  
  .dock-item {
    width: 42px;
    height: 42px;
  }
  
  .dock-item i {
    font-size: 18px;
  }
  
  .dock-label {
    font-size: 11px;
    padding: 4px 8px;
  }
}
