/* ═══ cineverse/css/reset.css ═══ */

/* Reset base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-void);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-ui);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Selección de texto */
::selection {
  background-color: var(--accent-red);
  color: var(--text-primary);
}

/* Estilos de scrollbar personalizados */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--accent-red);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-crimson);
}

/* Enlaces y botones reset */
a {
  color: inherit;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

img, svg, video, iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

/* Ocultar cursor nativo si está activada la clase de cursor personalizado */
body.custom-cursor-active,
body.custom-cursor-active * {
  cursor: none !important;
}
