#animation-container {
  position: relative;
  overflow: hidden;
  height: 100vh;
  background: transparent; /* убрать градиент или заменить на прозрачный */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform;
}

#icons {
  display: flex;
  gap: 40px;
  opacity: 0;
  transition: opacity 1.5s ease;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: auto;
  z-index: 10;
}

#icons.visible {
  opacity: 1;
}

#icons img {
  width: 50px;
  height: 50px;
  user-select: none;
}

.content-block {
  max-width: 720px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Orbitron', sans-serif;
  color: #f0f0f0;
  text-align: center;
}

.content-block h2 {
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.content-block p {
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Сброс и базовые стили */
body, html {
  margin: 0;
  padding: 0;
  background-color: #06062d;
  color: #ddd;
  font-family: 'Orbitron', sans-serif;
}
#stars-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
#canvas {
  position: relative;
  z-index: 1;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  will-change: opacity, transform;
}


.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
#icons img {
  filter: brightness(1.5) drop-shadow(0 0 5px white);
  transition: filter 0.3s ease, transform 0.3s ease;
}

#icons img:hover {
  filter: brightness(2) drop-shadow(0 0 10px white);
  transform: scale(1.1);
}
.footer {
  background-color: #1a237e;
  color: #fff;
  text-align: center;
  padding: 20px 15px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  user-select: none;
  margin-top: 40px;
  opacity: 0.5;
}

@media (max-width: 600px) {
  .footer {
    font-size: 12px;
    padding: 15px 10px;
  }
}

