@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none; /* Oculta el cursor original */
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  height: 100%;
  background: black;
  overflow-x: hidden;
  color: white;
  font-family: 'Share Tech Mono', monospace;
}

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://media.giphy.com/media/oEI9uBYSzLpBK/giphy.gif') center/cover;
  opacity: var(--glitch-opacity, 0.1);
  z-index: 0;
  transition: opacity 2s ease;
}


.hero h1,
.hero p,
.hero .enter-button {
  z-index: 1;
}

h1 {
  font-size: 4rem;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.enter-button {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.enter-button:hover {
  background: white;
  color: black;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  pointer-events: none;
  background: url('KURVO.png') center/contain no-repeat;
  z-index: 1000;
}

.manifesto {
  width: 100%;
  max-width: 900px;
  margin: 80px auto;
  padding: 40px 20px;
  line-height: 1.8;
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.manifesto.hidden {
  opacity: 0;
  transform: translateY(40px);
}

.manifesto.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.manifesto h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff0044;
  text-align: center;
}

.manifesto p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #ddd;
  text-align: justify;
}
