			
	/* Floating Menu Button */
    .floating-menu-btn {
      position: fixed;
      top: 20px;
      right: 10px;
      z-index: 1000;
      background: #1a1a1a;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    .floating-menu-btn:hover {
      background: #333;
      transform: scale(1.1);
    }

    /* Hamburger Lines */
    .hamburger {
      width: 24px;
      height: 3px;
      background: white;
      position: relative;
      transition: all 0.3s ease;
    }

    .hamburger::before,
    .hamburger::after {
      content: '';
      position: absolute;
      width: 24px;
      height: 3px;
      background: white;
      transition: all 0.3s ease;
    }

    .hamburger::before { top: -8px; }
    .hamburger::after { top: 8px; }

    /* Open state */
    .floating-menu-btn.open .hamburger {
      background: transparent;
    }

    .floating-menu-btn.open .hamburger::before {
      transform: rotate(45deg);
      top: 0;
    }

    .floating-menu-btn.open .hamburger::after {
      transform: rotate(-45deg);
      top: 0;
    }

    /* Menu Dropdown */
    .floating-menu {
      position: fixed;
      top: 80px;
      right: 10px;
      background: #1a1a1a;
      color: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      min-width: 220px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-20px);
      transition: all 0.3s ease;
      z-index: 999;
    }

    .floating-menu.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .floating-menu a {
      display: block;
      padding: 16px 24px;
      color: white;
      text-decoration: none;
      font-size: 16px;
      transition: background 0.2s ease;
    }

    .floating-menu a:hover {
      background: #333;
    }

    .floating-menu a:first-child {
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .floating-menu a:last-child {
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 12px;
    }