
    .album {
      padding: 2rem;
      text-align: center;
    }
    .album h2 {
      color: var(--orange-dark);
      margin-bottom: 0.5rem;
    }
    .album p {
      margin-bottom: 1rem;
      text-align: center;
    }
    .media {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .media img, .media video {
      width: 200px;
      height: 150px;
      object-fit: cover;
      margin: 10px;
      border-radius: 8px;
      border: 2px solid #ccc;
      cursor: pointer;
    }
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      display: none;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
      flex-direction: column;
      z-index: 9999;
    }
    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
      margin-bottom: 1rem;
    }
    .close-btn {
      font-size: 2rem;
      color: white;
      position: absolute;
      top: 20px;
      right: 30px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .controls button {
      background: var(--orange-dark);
      color: white;
      padding: 0.5rem 1rem;
      margin: 0 0.5rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    
