/* Board Games Barcelona - Custom Styles */

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

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

::-webkit-scrollbar-track {
  background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
  background: #1a1a2e;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e94560;
}

/* Focus styles for accessibility */
input:focus,
textarea:focus,
button:focus {
  outline: 2px solid #e94560;
  outline-offset: 2px;
}

/* Navbar active link underline animation */
nav a.text-accent {
  position: relative;
}

nav a.text-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e94560;
  border-radius: 1px;
}
