@font-face {
  font-family: 'NeueRoman';
  src: url('../fonts/NeueRoman-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NeueMono';
  src: url('../fonts/NeueMono-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: #050301;
  color: #fff;
  font-family: 'NeueRoman', serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: none;
  position: relative;
  text-align: center;
}

.logo {
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  position: relative;
  z-index: 10;
}

.logo::after {
  content: '©';
  font-size: 0.8rem;
  vertical-align: super;
  margin-left: 4px;
  opacity: 0.6;
}

.tagline {
  font-family: 'NeueMono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  animation: subtle-pulse 2.5s ease-in-out infinite;
  position: absolute;
  bottom: 5vh;
  text-align: center;
}

@keyframes subtle-pulse {
  0%   { opacity: 0.5; transform: scale(1); }
  50%  { opacity: 0.8; transform: scale(1.02); }
  100% { opacity: 0.5; transform: scale(1); }
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  z-index: 10000;
  will-change: transform;
}
