/* small extra polish */
.glass { background: rgba(54, 38, 38, 0.06); backdrop-filter: blur(6px); }
.accent { color: #6D28D9; }

/* Custom animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom gradient text */
.gradient-text {
  background: linear-gradient(to right, #8B5CF6, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Skill bar animation */
.skill-bar {
  transition: width 1.5s ease-in-out;
}

/* Bot Animation Styles */
.bot-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.bot-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6D28D9, #8B5CF6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(109, 40, 217, 0.4);
  transition: all 0.3s ease;
  animation: bot-float 3s ease-in-out infinite;
}

.bot-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.6);
}

.bot-icon {
  font-size: 24px;
  color: white;
}