
/* Gala Night Section */
.gala-night {
    padding: 80px 0;
    text-align: center;
    position: relative;
  }
  
  .gala-night::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .gala-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .star {
    position: absolute;
    opacity: 0.5;
    animation: twinkle 3s infinite alternate;
  }
  
  @keyframes twinkle {
    from {
      opacity: 0.2;
    }
    to {
      opacity: 0.7;
    }
  }
  