 .popup-content {
  display: none;
}

.popup-content.show {
  display: block;
}
.popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      width: 90%;
      max-width: 700px;
      padding: 24px;
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(16px);
      color: white;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      z-index: 10000;
      display: none;
      opacity: 0;
      transition: all 0.3s ease;
    }

    .popup.show {
      display: block;
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
 .popup-content-info,
    .popup-content-video {
      display: none;
    }

    .popup-content-info.show,
    .popup-content-video.show {
      display: block;
    }

    .popup h2 {
      margin-bottom: 8px;
      font-size: 20px;
    }

    .popup em {
      display: block;
      margin-bottom: 16px;
      font-style: italic;
      color: #ddd;
    }

    .popup ul {
      padding-left: 20px;
      margin-bottom: 8px;
    }

    .popup ul li {
      margin-bottom: 6px;
    }

    .popup .desc {
      font-size: 14px;
      line-height: 1.5;
      color: #f1f1f1;
    }

    .popup iframe {
      width: 100%;
      height: 315px;
      border: none;
      margin-top: 16px;
    }

    .buttons {
          position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    gap: 16px;
    z-index: 9999;
    align-items: center;
    flex-direction: column;
    }

   .icon-btn:hover { transform: scale(1.65);
  opacity: 1;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.25);
}

      .icon-btn:hover .info-tooltip   {
    display: block;
        }

     .info-tooltip {
    display: none;
    transform: translateX(-80%);
    color: #ffffff;
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 100;
    background: rgb(255 255 255 / 15%);
    backdrop-filter: blur(9px);
    font-size: 10px;
    }

    .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgb(255 158 54 / 20%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgb(255 255 255 / 15%);
    backdrop-filter: blur(16px);
    white-space: nowrap;
    }

    .icon-btn img {
      width: 20px;
      height: 20px;
      position: absolute;
    }

    .close-btn {
      position: absolute;
      top: 12px;
      right: 12px;
      font-size: 18px;
      cursor: pointer;
      color: white;
    }

