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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: #e0e0e0;
}

main.container {
  text-align: center;
  padding: 2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

div.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(0, 255, 255, 0.08), rgba(255, 0, 170, 0.05));
  box-shadow:
    0 8px 40px rgba(0, 255, 255, 0.08),
    0 -8px 40px rgba(255, 0, 170, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

div.logo::before,
div.logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  pointer-events: none;
}

div.logo::before {
  background: linear-gradient(90deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 170, 0.12));
  mix-blend-mode: screen;
  animation: glow 5s ease-in-out infinite;
  opacity: 0.7;
}
div.logo::after {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0));
  transform: skewX(-10deg);
  animation: sweep 4s linear infinite;
  opacity: 0.6;
}

h1.nutsloop {
  position: relative;
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  margin: 0;
  background: linear-gradient(135deg, #6fffe9, #e36eff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(111, 255, 233, 0.35);
}

p.coming-soon {
  font-size: 1.05rem;
  color: #9a9a9a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes glow {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.8; }
}

@keyframes sweep {
  0% { transform: translateX(-120%) skewX(-10deg); }
  100% { transform: translateX(120%) skewX(-10deg); }
}
