* {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.shadow-brutal {
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 1);
}

.shadow-brutal-lg {
  box-shadow: 12px 12px 0 0 rgba(0, 0, 0, 1);
}

.border-6 {
  border-width: 6px;
}

.border-8 {
  border-width: 8px;
}

input:focus {
  outline: none;
}

button {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem !important;
  }
  
  .shadow-brutal {
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 1);
  }
  
  .shadow-brutal-lg {
    box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 1);
  }
}

/* Prevent text selection during drag */
.cursor-grab * {
  user-select: none;
}

/* Smooth animations */
@keyframes slideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-in {
  animation: slideIn 0.3s ease-out;
}

/* Custom scrollbar for lists */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #F5F5DC;
  border: 4px solid #000;
}

::-webkit-scrollbar-thumb {
  background: #FF69B4;
  border: 2px solid #000;
}

::-webkit-scrollbar-thumb:hover {
  background: #00FFFF;
}