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

/* Base */
body {
  background: #000;
  color: #fff;
  height: 100vh;
  overflow: hidden;

  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Subtle scanline texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 3px
  );
}

/* Center layout */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Main text */
.drop {
  font-size: clamp(32px, 6vw, 72px);
  letter-spacing: 0.22em;
  font-weight: 300;

  opacity: 0;
  transform: translateY(-150vh);

  animation: dropIn 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;

  /* subtle depth */
  text-shadow: 0 20px 40px rgba(255,255,255,0.08);
}

/* Drop animation */
@keyframes dropIn {
  0% {
    transform: translateY(-150vh);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  65% {
    transform: translateY(15px) scaleY(0.97);
  }

  80% {
    transform: translateY(-6px) scaleY(1.01);
  }

  100% {
    transform: translateY(0) scaleY(1);
    opacity: 1;
  }
}

/* Cursor */
.cursor {
  margin-left: 8px;
  animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
  to { visibility: hidden; }
}
