.social-bubbles {
      position: fixed;
      bottom: 20px;
      left: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 999;
    }

    .social-bubbles a {
      width: 45px;
      height: 45px;
      background-color: #333;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 18px;
    }

    .social-bubbles a:hover {
      background-color: #007bff;
      transform: scale(1.1);
    }

    /* Mobil uyum için */
    @media (max-width: 768px) {
      .social-bubbles a {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
    }