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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0f;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bg-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
}

canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.content-wrapper {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.year-container {
  position: relative;
  text-align: center;
}

.title {
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #a8b2d1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeIn 1.5s ease-out;
  filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.2));
}

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

.subtitle {
  margin-top: 2rem;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.5s ease-out 0.5s backwards;
  text-align: center;
  max-width: 90%;
}

@media (max-width: 768px) {
  .subtitle {
    bottom: 2rem;
    font-size: 0.8rem;
  }
}
