  body {
    margin: 0;
    background: #F4E6D8;
  }

  .stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* чтобы не мешали кликам */
    z-index: -1;
  }

  .star {
    position: absolute;
    font-size: 60px; /* звезды крупнее */
    color: #FF7043; /* оранжевая по умолчанию */
    opacity: 0.6;
    transition: transform 0.6s ease-out; /* плавное движение */
  }
