<style>
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  font-family: "Outfit", sans-serif;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0a0e17;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}
.nav-item {
  transition: all 0.2s;
}
.nav-item:hover {
  background: rgba(6, 182, 212, 0.1);
}
.nav-item.active {
  background: rgba(6, 182, 212, 0.15);
  border-left: 3px solid #06b6d4;
  color: #06b6d4;
}
.fade-in {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.pulse-dot {
  animation: pulse-dot 2s infinite;
}
.terminal-input:focus {
  outline: none;
}
.chat-bubble {
  max-width: 80%;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.cursor-blink::after {
  content: "▋";
  animation: blink 1s infinite;
  color: #06b6d4;
}
.glow {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}
.border: 1px solid rgba(168, 85, 247, 0.4);
.box-shadow: 0 0 12px rgba(168, 85, 247, 0.15);

p {
  color: #34d399;
  font-size: 90%;
}
body {
  box-sizing: border-box;
}

</style>