body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Custom hex hover effects */
.hex-group:hover .hex-path {
  stroke-width: 4;
  stroke: #fb923c;
  filter: drop-shadow(0 6px 25px rgba(251, 146, 60, 0.3));
}

/* Smooth transitions for hex elements */
.hex-element {
  transition: all 0.3s ease;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(55, 65, 81, 0.5);
}

::-webkit-scrollbar-thumb {
  background: rgba(251, 146, 60, 0.8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(251, 146, 60, 1);
}

/* Animation for modal entrance */
@keyframes modalEnter {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-content {
  animation: modalEnter 0.2s ease-out;
}