.floating-social-box {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 30px;
  }

  .floating-social-box a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .floating-social-box a:hover {
    background-color: #444;
    transform: scale(1.1);
  }

  .floating-social-close {
    background-color: #000 !important;
    font-size: 18px;
  }

  /* Mobilde gizle */
  @media screen and (max-width: 768px) {
    .floating-social-box {
      display: none !important;
    }
  }



  .floating-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    color: #fff;
    font-weight: bold;
    padding: 10px 40px 10px 10px;
    z-index: 9999;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 14px;
  }

  .floating-banner span {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 15s linear infinite;
    animation-play-state: running;
  }

  .floating-banner:hover span {
    animation-play-state: paused;
  }

  @keyframes scrollText {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
  }

  .floating-banner a {
    color: #ff6c00;
    text-decoration: underline;
  }

  .close-banner {
    position: absolute;
    top: 8px;
    right: 10px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
  }

  .close-banner:hover {
    color: #ccc;
  }

  @media (max-width: 600px) {
    .floating-banner {
      font-size: 12px;
      padding: 8px 35px 8px 8px;
    }

    .close-banner {
      font-size: 18px;
      top: 6px;
      right: 8px;
    }
  }