/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

/* Main styling */
body {
  background: #000000;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* Title */
.title {
  font-size: clamp(4.5rem, 13vw, 16rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.88;
  user-select: none;
  padding: 0 4vw;
}

/* Optional: very subtle glow / futuristic feel */
.title {
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.15),
    0 0 60px rgba(255, 255, 255, 0.08);
}

/* Very small screens adjustment */
@media (max-width: 480px) {
  .title {
    font-size: clamp(3.2rem, 11vw, 7.5rem);
    letter-spacing: -0.03em;
  }
}

/* Optional: slight breathing animation (uncomment if you like it) */
/*
.title {
  animation: pulse 8s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { opacity: 0.92; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.015); }
}
*/