/* SPC Sports - Estilos Personalizados */

:root {
  --font-sans: "Inter", "Inter Fallback", system-ui, -apple-system, sans-serif;
  --font-display: "Bebas Neue", "Impact", sans-serif;
  --font-title: "Rajdhani", "Arial Black", sans-serif;

  --color-background: #000000;
  --color-foreground: #fafafa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-image: url("https://spcsports.site/images/pc.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #0f1e3d;
  color: var(--color-foreground);
  min-height: 100vh;
}




/* Clases utilitarias personalizadas */
.text-foreground {
  color: var(--color-foreground);
}

.text-muted-foreground {
  color: #a1a1a1;
}

/* Smooth transitions */
a,
button {
  transition: all 0.3s ease;
}

/* Focus visible para accesibilidad */
:focus-visible {
  outline: 2px solid #525252;
  outline-offset: 2px;
}


#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  transform: translateY(-5px);
}