.lights-container {
      position: relative;
      width: 100%;
      height: 60px;
      margin-bottom: 40px;
    }
.header-content {
    position: relative;
    background: url('/images/garland.png');
    background-repeat: repeat-x;
    background-position: bottom -10px center;
}
    .wire {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: #333;
    }

    .lights {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .light {
      position: relative;
      width: 20px;
      height: 30px;
      background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
      border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
      animation: twinkle 1.5s infinite;
    }

    .light::before {
      content: '';
      position: absolute;
      top: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 8px;
      background: #333;
    }

    .light::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      border-radius: inherit;
      opacity: 0.5;
      filter: blur(8px);
      animation: glow 1.5s infinite;
    }

    /* Разные цвета для лампочек */
    .light:nth-child(5n+1) {
      background-color: #ff3838;
      box-shadow: 0 0 10px #ff3838;
    }
    .light:nth-child(5n+1)::after {
      background-color: #ff3838;
    }

    .light:nth-child(5n+2) {
      background-color: #4CAF50;
      box-shadow: 0 0 10px #4CAF50;
      animation-delay: 0.3s;
    }
    .light:nth-child(5n+2)::after {
      background-color: #4CAF50;
      animation-delay: 0.3s;
    }

    .light:nth-child(5n+3) {
      background-color: #2196F3;
      box-shadow: 0 0 10px #2196F3;
      animation-delay: 0.6s;
    }
    .light:nth-child(5n+3)::after {
      background-color: #2196F3;
      animation-delay: 0.6s;
    }

    .light:nth-child(5n+4) {
      background-color: #FFEB3B;
      box-shadow: 0 0 10px #FFEB3B;
      animation-delay: 0.9s;
    }
    .light:nth-child(5n+4)::after {
      background-color: #FFEB3B;
      animation-delay: 0.9s;
    }

    .light:nth-child(5n+5) {
      background-color: #FF9800;
      box-shadow: 0 0 10px #FF9800;
      animation-delay: 1.2s;
    }
    .light:nth-child(5n+5)::after {
      background-color: #FF9800;
      animation-delay: 1.2s;
    }

    @keyframes twinkle {
      0%, 100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: 0.4;
        transform: scale(0.95);
      }
    }

    @keyframes glow {
      0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
      }
      50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
      }
    }