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

html,
body {
  height: 100%;
  height: 100dvh;
  overflow: hidden;
}

body {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  background: #07090c;
  color: #9eb4c8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: env(safe-area-inset-top) env(safe-area-inset-right)
    env(safe-area-inset-bottom) env(safe-area-inset-left);
  -webkit-text-size-adjust: 100%;
}

.grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 170, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 170, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(0, 180, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px, 16px 16px, 16px 16px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, black 35%, transparent 92%);
  pointer-events: none;
}

.scanlines {
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  pointer-events: none;
  opacity: 0.35;
}

.stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.25rem);
  padding: clamp(1rem, 4vw, 2rem);
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.logo {
  font-family: "Caveat", cursive;
  font-size: clamp(3.2rem, 14vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #e8f4ff;
  text-shadow:
    0 0 24px rgba(0, 255, 170, 0.22),
    0 0 56px rgba(0, 180, 255, 0.1);
  user-select: none;
  line-height: 1.1;
  cursor: default;
  transition:
    text-shadow 0.45s ease,
    transform 0.45s ease,
    color 0.45s ease;
}

.logo:hover {
  transform: scale(1.02);
  color: #ffffff;
  text-shadow:
    0 0 16px rgba(0, 255, 170, 0.5),
    0 0 36px rgba(0, 255, 170, 0.38),
    0 0 72px rgba(0, 255, 170, 0.22),
    0 0 100px rgba(0, 180, 255, 0.16);
}

