/* ── CleanSport Custom Styles ── */

/* Neo‑brutalist shadow utilities */
.neo-shadow {
  box-shadow: 4px 4px 0px 0px rgba(26,26,26,1);
}
.neo-shadow-lg {
  box-shadow: 8px 8px 0px 0px rgba(26,26,26,1);
}
.neo-shadow-hover:hover {
  box-shadow: 2px 2px 0px 0px rgba(26,26,26,1);
  transform: translate(2px, 2px);
}

/* Material Symbols defaults */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Skeleton loading animation */
@keyframes pulse-neo {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.skeleton {
  animation: pulse-neo 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  background-color: #d6d1c9;
}

/* Custom scrollbar (WebKit) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f5f0e8;
}
::-webkit-scrollbar-thumb {
  background-color: #1a1a1a;
  border: 2px solid #f5f0e8;
}

/* Selection */
::selection {
  background: #ffcc00;
  color: #1a1a1a;
}

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