/* Custom styles for Vibe Coding */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.berrycomputer-logo {
  filter: drop-shadow(0 0 2px rgba(255, 74, 141, 0.5));
  transition: transform 0.3s ease;
}

.berrycomputer-logo:hover {
  transform: scale(1.1);
}

.code-editor {
  tab-size: 2;
  -moz-tab-size: 2;
}

.animate-float {
  animation: float 20s linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

.thoughts-container::-webkit-scrollbar,
.code-editor::-webkit-scrollbar {
  width: 8px;
}

.thoughts-container::-webkit-scrollbar-track,
.code-editor::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.thoughts-container::-webkit-scrollbar-thumb,
.code-editor::-webkit-scrollbar-thumb {
  background: rgba(128, 90, 213, 0.5);
  border-radius: 4px;
}

.thoughts-container::-webkit-scrollbar-thumb:hover,
.code-editor::-webkit-scrollbar-thumb:hover {
  background: rgba(128, 90, 213, 0.8);
}

/* Pulsing effect for notifications */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(168, 85, 247, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}