/* Reel look */
.modal-reel {
  max-width: 400px; /* Reel width */
}

.reel-content {
  background: black;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 10px 35px rgba(0,0,0,0.6);
}

/* Pop-in Reel Animation */
.animate-reel {
  animation: reelPop 0.5s ease-out forwards;
}

@keyframes reelPop {
  0% {
    transform: scale(0.6) rotate(-8deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.05) rotate(3deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
