/* Popup overlay */
    .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    /* Popup box */
    .popup-box {
      background: #fff;
      border-radius: 12px;
      max-width: 90%;
      width: 400px;
      text-align: center;
      padding: 15px;
      position: relative;
      animation: fadeIn 0.3s ease;
    }

    /* Poster Image */
    .popup-box img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    /* Contact Button */
    .popup-box button {
      margin-top: 15px;
      background: #015fc9;
      color: #fff;
      border: none;
      padding: 10px 20px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
    }
    .popup-box button:hover {
      background: #4d9bf5;
    }

    /* Close Button */
    .popup-close {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 20px;
      font-weight: bold;
      color: #333;
      background-color: white;
      border-radius: 50%;
      cursor: pointer;
    }

    /* Fade animation */
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }