body {
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 134, 209, 0.14), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(110, 165, 255, 0.12), transparent 36%),
    #050507;
  color: #e4e4ea;
  text-align: center;
  position: relative;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.wrapper.animated {
  position: relative;
  z-index: 1;
  padding-top: 56px;
}

.logo {
  max-width: 260px;
  width: 70vw;
  height: auto;
}

.hover-zoom { transition: transform 0.25s ease; }
.hover-zoom:hover { transform: scale(1.03); }

#planet {
  font-family: monospace, monospace;
  white-space: pre;
  color: rgba(110, 107, 107, 0.3);
  background: transparent;
  padding: 10px;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  user-select: none;
  font-size: 12px;
  line-height: 12px;
  pointer-events: none;
  z-index: 10;
  text-shadow: 0 0 5px rgba(238, 60, 170, 0.7);
  max-width: 90vw;
  overflow: visible;
  width: max-content;
}

a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
  position: relative;
}

a:hover { color: #ffffff; }

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 134, 209, 0.9), rgba(255, 255, 255, 0.8));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after { transform: scaleX(1); }

.page-loader { display: none; }

@media (max-width: 760px) {
  body { padding: 16px; }
  .wrapper.animated { padding-top: 44px; }
  .logo { max-width: 210px; width: 64vw; }
  .nav-link { display: inline-block; padding: 6px 10px; margin-top: 6px; }
  #planet { font-size: 10px; line-height: 10px; top: 44px; }
}
