/* Dock Styles */

#dock-container {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 6000;
}

#dock {
  background: var(--dock-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 70px;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.dock-item {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  cursor: pointer;
}

/* SVG Icon Styles */
.dock-icon-svg {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.dock-item:hover {
  transform: scale(1.2) translateY(-10px);
  margin: 0 5px;
}

.dock-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: absolute;
  bottom: -8px;
  display: none;
}

.dock-item.active .dock-dot {
  display: block;
}

/* Bounce Animation */
@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.bouncing {
  animation: bounce 0.6s ease infinite;
}

/* Dock Badge */
.dock-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff3b30;
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(0, 0, 0, 0.2);
}

