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

body {
  overflow: hidden;
  background: #050505;
  color: white;
  font-family: Arial, sans-serif;
}

/* VHS NOISE */
.vhs {
  position: fixed;
  inset: 0;
  background: url("https://media.giphy.com/media/oEI9uBYSzLpBK/giphy.gif");
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

/* DARK DEPTH LAYER */
.overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.97));
  z-index: 1;
}

/* TEXT */
.hero {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 52px;
  letter-spacing: 8px;
}

.hero p {
  opacity: 0.6;
  margin-top: 10px;
  letter-spacing: 4px;
}

.hero span {
  margin-top: 15px;
  font-size: 12px;
  opacity: 0.4;
  letter-spacing: 6px;
}

/* SHURIKEN STYLE */
.shuriken {
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  opacity: 0.85;
  clip-path: polygon(
    50% 0%,
    60% 40%,
    100% 50%,
    60% 60%,
    50% 100%,
    40% 60%,
    0% 50%,
    40% 40%
  );
  filter: blur(0.3px);
  z-index: 2;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
    letter-spacing: 4px;
  }
}