.floating-banner {
  position: fixed;

  /* oberes Drittel rechts */
  top: 20%;
  right: 20px;

  /* Desktop Breite */
  width: 30vw;

  border-radius: 18px;
  overflow: hidden;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  box-shadow: 0 10px 40px rgba(0,0,0,0.25);

  z-index: 9999;

  /* Start außerhalb */
  transform: translateX(800px);
  opacity: 0;

  /* Animation */
  animation: slideInRight 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;

  /* Delay */
  animation-delay: 1s;
}

.floating-banner img {
  width: 100%;
  display: block;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 1px;
  right: 1px;
box-shadow:none;
  width: 50px;
  height: 50px;
  color:#ffffff;

  /* border: none;
  border-radius: 50%; */

  /*background: rgba(0,0,0,0.6);
  color: white;*/

  cursor: pointer;
  font-size: 25px;

  z-index: 2;

  transition: transform 0.2s ease,
              background 0.2s ease;
}

.close-btn:hover {
  /*transform: scale(1.1);
  background: rgba(0,0,0,0.8);*/
}

/* Einfahr-Animation */
@keyframes slideInRight {
  from {
    transform: translateX(800px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Ausblenden */
.floating-banner.hide {
  transform: translateX(800px);
  opacity: 0;
  transition: all 0.5s ease;
}

/* 📱 Mobile */
@media (max-width: 768px) {

  .floating-banner {
    width: 70vw;

    right: 15px;
    top: 20px;
	
	.close-btn {
  position: absolute;
  top: -5px;
  right: 15px;

  width: 15px;
  height: 15px;

	}
  }

}