*
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

.contentgd
{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 5%;
}
.contentgd ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    color: rgb(80, 80, 80);
  }
  .overgd
  {
    margin-top: 5%;
  }
  .spotlight-video {
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .video-thumbnail {
    width: 100%;
    display: block;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .spotlight-video:hover .play-button {
    background: rgba(0, 0, 0, 0.8);
  }
  .posterdesign {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
  }
  
  .posterdesign h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .image-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    position: relative;
  }
  
  /* Scroll hint arrow */
  .image-gallery::after {
    content: "➜";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    display: block;
  }
  
  .image-gallery img {
    flex: 0 0 auto;
    height: 400px; /* enough to show full A4 images */
    width: auto;
    max-width: 100%;
    object-fit: contain; /* ensures full image is shown, uncropped */
    background: #f9f9f9; /* optional: creates a clean canvas */
    border-radius: 8px;
    scroll-snap-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .image-gallery img:hover {
    transform: scale(1.03);
  }
  @media (min-width: 768px) {
    .image-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      overflow-x: visible;
    }
  
    .image-gallery::after {
      display: none;
    }
  
    .image-gallery img {
      flex: initial;
      width: 100%;
      height: auto;
      object-fit: initial;
    }
  }
  @media (max-width: 768px) {
    .contentgd {
      flex-direction: column;
      gap: 1.5rem;
      padding: 0 1rem;
    }
  
    .contentgd h2 {
      font-size: 1.2rem;
    }
  
    .contentgd ul li {
      font-size: 0.95rem;
      line-height: 1.6;
    }
  }

  