body {
  margin: 0;
  padding: 0;
  background: #090909;
  overflow: hidden;
  font-family: 'JetBrains Mono', monospace;
  color: #80d8ff;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 25vh;
}

.content h1 {
  font-size: 6rem;
  margin: 0;
  font-weight: 600;
  color: #80d8ff;
  user-select: none;
}

.content h2 {
  font-size: 2rem; 
  margin: 0;
  margin-bottom: 75px;
  font-weight: 500;
  color: #80d8ff;
  user-select: none;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 0 25px;
  color: #80d8ff;
  font-size: 38px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  line-height: 1em;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* для десктопа */
@media (hover: hover) and (pointer: fine) {
  .social-icons a:hover {
    transform: scale(1.3);
    color: #b3e5fc;
  }

  .social-icons a:hover:active {
    transform: scale(1.0);
  }
}

/* для мобильных (тап) */
.social-icons a:active {
  transform: scale(1.2);
}

.pulse-wave {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(128, 216, 255, 0.6);
  transform: translate(-50%, -50%) scale(0.8);
  animation: pulse 1s ease-out forwards;
  pointer-events: none;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
/*
#wave {
  color: #5d6969;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  white-space: pre;
  pointer-events: none;
}*/

footer {
  position: fixed;
  font-size: 20px;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  color: white;
  font-family: 'JetBrains Mono', monospace;
  z-index: 2;
  background: rgb(7, 7, 7);
  user-select: none;
}

.headbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  background: rgb(7,7,7);
  overflow: hidden;
  z-index: 3;
  display: flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  color: white;
  user-select: none;
  font-size: 20px;
  padding: 15px 0;
  padding-left: 100%;
  box-sizing: border-box; 
}
.marquee {
  white-space: nowrap;
  display: inline-block;
  will-change: transform;
}