@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

html, body {
  height: 100%;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  background: #000;
  color: #909090;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  position: relative;
  overflow: hidden;
}

.texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/black-texture.jpg') center/cover;
  opacity: 0.7;
  pointer-events: none;
}

.canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeIn 1s ease-out;
  pointer-events: none;
  user-select: none;
  margin-top: 12vh;
}

.content button {
  pointer-events: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #909090;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: #656565;
  letter-spacing: 0.08em;
  margin-bottom: 48px;
}

.button {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: #555555;
  padding: 12px 32px;
  border-radius: 980px;
  border: 1px solid rgba(160, 160, 160, 0.3);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  cursor: default;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  color: #555555;
  border-color: rgba(160, 160, 160, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

.version {
  margin-top: 48px;
  font-size: 13px;
  color: #3a3a3a;
}
