body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #cfcfcf;
  height: 100vh;
  overflow-x: hidden;
  animation: breath 6s ease-in-out infinite alternate;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  transition: background-image 1s ease-in-out;
}

/* Анимация заголовка */
.hologram {
  font-size: 5em;
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 15px #00ffff, 0 0 30px #00ffff;
  animation: breath 6s ease-in-out infinite alternate;
  letter-spacing: 8px;
}

/* Уже есть анимация pulse — можешь оставить или заменить на breath */

@keyframes breath {
  0% { transform: scale(1); opacity: 0.95; }
  100% { transform: scale(1.04); opacity: 1; }
}

@keyframes pulse {
  from {
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 20px #00ffff;
    transform: scale(1);
  }
  to {
    text-shadow: 0 0 15px #00ffff, 0 0 30px #00ffff, 0 0 45px #00ffff;
    transform: scale(1.05);
  }
}

.container {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 80px;
    animation: fadeIn 1s ease-in-out;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* Само ключевое кадрирование */
@keyframes fadeIn {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 3;
}

.navbar a {
  color: #00ffff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.navbar a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #00ffff;
}

.subtitle {
  font-size: 1.2em;
  margin-top: -10px;
  color: #99e6ff;
  text-shadow: 0 0 5px rgba(0,255,255,0.3);
}

.intro {
  margin-top: 20px;
  font-size: 1em;
  color: #cccccc;
  opacity: 0.85;
}

.quotes {
  margin-top: 40px;
  font-style: italic;
  font-size: 1em;
  opacity: 0.8;
  color: #aeeeff;
  animation: fadeIn 5s ease-in;
}

.quotes p {
  margin: 5px 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
body {
  /* ... предыдущие стили ... */
  color: #ffffff;
  text-shadow: 0 0 4px #000000, 0 0 8px rgba(0,0,0,0.5);
}
.sketch {
  display: block;
  margin: 30px auto;
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.quote {
  text-align: center;
  font-size: 1.4em;
  color: #00ffff;
  margin-top: 20px;
}
