
  /* Overlay background */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .popup-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  /* Konten Modal - Responsive */
  .popup-content {
    position: relative;
    width: 90%;          /* Lebar 90% di HP */
    max-width: 600px;    /* Maksimal 600px di Desktop */
    transform: scale(0.8);
    transition: all 0.4s ease;
  }

  .popup-overlay.show .popup-content {
    transform: scale(1);
  }

  .popup-img {
    width: 100%;
    height: auto;        /* Menjaga proporsi gambar */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: block;
  }

  /* Tombol Silang - Posisi aman untuk mobile & desktop */
  .close-popup {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }

  /* Penyesuaian layar kecil */
  @media (max-width: 576px) {
    .close-popup {
      top: -35px;
      font-size: 30px;
    }
  }
  
  /* Wrapper untuk mengatur posisi */
  .hero-img-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
  }

  /* Target gambar kita */
  .my-bird-logo {
    display: block;
    transition: transform 0.4s ease-in-out !important;
  }

  /* Efek saat kursor diarahkan ke wrapper */
  .hero-img-wrapper:hover .my-bird-logo {
    transform: scale(1.1) !important;
  }

  /* Teks yang muncul */
  .hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    opacity: 0;
    pointer-events: none; /* Agar tidak menghalangi kursor */
    transition: opacity 0.3s ease;
    z-index: 10;
  }

  .hero-img-wrapper:hover .hover-text {
    opacity: 1;
  }