* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'LemonMilk', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  background: #121212;
  color: #f2f2f2;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Lemon Milk OTF fonts you uploaded into /assets */
@font-face {
  font-family: 'LemonMilk';
  src: url('/assets/LEMONMILK-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LemonMilk';
  src: url('/assets/LEMONMILK-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

header {
  padding: 4rem 2rem;
  text-align: center;
}

/* Page layout */
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 3rem 1.5rem;
  position: relative;
}

.hero {
  text-align: center;
}


.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 12vw, 140px);
  line-height: 0.9;
  letter-spacing: -1px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 6px 30px rgba(255,255,255,0.06);
  transition: transform 220ms cubic-bezier(.2,.9,.3,1), letter-spacing 220ms;
}

/* Slight scale up on hover for devices that support hover */
@media (hover: hover) and (pointer: fine) {
  .hero h1:hover { transform: scale(1.04); }
}


.hero .sub {
  display: none;
}

.info p {
  color: rgba(255,255,255,0.65);
  max-width: 720px;
  text-align: center;
}

/* Footer at bottom of the site container */
.site-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: 0 auto;
  padding: 0 1rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.98rem;
  text-align: center;
}

/* Responsiveness tweaks */
@media (max-width: 520px) {
  .hero h1 { font-size: clamp(36px, 20vw, 72px); }
  .site { padding: 2rem 1rem; }
  .site-footer { bottom: 14px; font-size: 0.95rem; }
}

/* cursor glow element */
#cursor-glow {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 480px;
  height: 480px;
  pointer-events: none;
  transform: translate(-50%, -50%) translate3d(0,0,0);
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.12) 6%, rgba(255,255,255,0.02) 40%, transparent 70%);
  filter: blur(80px);
  opacity: 0.12;
  mix-blend-mode: screen;
  transition: opacity 300ms linear;
}

@media (prefers-reduced-motion: reduce) {
  #cursor-glow { transition: none; filter: blur(40px); }
}

