  body {
    margin: 0;
    padding: 0;
    background: #000;
    height: 100vh;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
  }

  /* Фон: мягкие светящиеся шары */
  .glow {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 10s ease-in-out infinite alternate;
    filter: blur(100px);
  }

  .glow:nth-child(1) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff66cc, #9900ff);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
  }

  .glow:nth-child(2) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #cc66ff, #ff3399);
    top: 50%;
    right: 15%;
    animation-delay: 3s;
  }

  .glow:nth-child(3) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ff99cc, #cc33ff);
    bottom: 10%;
    left: 10%;
    animation-delay: 6s;
  }

  @keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.05); }
  }

  /* Градиентные тексты */
  h1 {
    font-size: 3rem;
    background: linear-gradient(270deg, #ff66cc, #9900ff, #ff66cc);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s ease infinite;
    text-align: center;
    z-index: 1;
  }

  h2, h3 {
    z-index: 1;
    text-align: center;
  }

  h2 {
    margin-top: 10px;
    font-size: 1.5rem;
    color: #cccccc;
    font-weight: 400;
  }

  h3 {
    margin-top: 40px;
    font-size: 1.2rem;
    color: #999999;
    font-weight: 300;
  }

  .slogan {
    font-style: italic;
    font-size: 1rem;
    color: #aaa;
    margin-top: 8px;
    z-index: 1;
  }

  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }