.wallet-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    min-width: 220px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.84), rgba(26, 26, 26, 0.90));
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  }

  .wallet-menu-panel::after {
    content: "";
    position: absolute;
    top: -7px;
    right: 18px;
    width: 14px;
    height: 14px;
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(18, 18, 18, 0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .wallet-menu-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.22;
    background:
      radial-gradient(circle at 18% 28%, rgba(255,255,255,0.12) 0 1px, transparent 2px),
      radial-gradient(circle at 78% 22%, rgba(255,255,255,0.10) 0 1px, transparent 2px),
      radial-gradient(circle at 52% 64%, rgba(255,255,255,0.09) 0 1px, transparent 2px),
      radial-gradient(circle at 22% 78%, rgba(255,255,255,0.08) 0 1px, transparent 2px),
      radial-gradient(circle at 90% 78%, rgba(255,255,255,0.08) 0 1px, transparent 2px);
  }
  
  .wallet-menu-panel.visible-modal-wallet {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .wallet-menu-panel button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255,255,255,.92);
    font-family: "PP Mori", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .875rem;
    line-height: 1.1;
    text-align: left;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  }

  .wallet-menu-panel button a {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
  }

  .wallet-menu-panel .wallet-menu-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75);
    flex: 0 0 auto;
  }

  .wallet-menu-panel .wallet-menu-label {
    flex: 1 1 auto;
  }
  
  .wallet-menu-panel button:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
    transform: translateY(-1px);
  }

  .wallet-menu-panel button:hover .wallet-menu-icon {
    color: rgba(255,255,255,.92);
  }

  .wallet-menu-panel button:active {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(0);
  }

  .wallet-menu-panel button:focus-visible {
    outline: 2px solid rgba(149,210,230,.45);
    outline-offset: 2px;
  }

  .wallet-menu-panel button[data-id="wallet_disconnect"]:hover {
    border-color: rgba(255, 77, 109, 0.55);
    background: rgba(255, 77, 109, 0.10);
  }

  .wallet-menu-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
  }

  .wallet-button-content {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .wallet-address {
    display: inline-block;
    white-space: nowrap;
    letter-spacing: .02em;
  }

  @keyframes spin {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@keyframes spindiv {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinner-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-wrapper {
    display: flex;
    width: 25px;
    height: 25px;
    animation: spindiv 2s linear infinite;
}

.spinner-circle {
    stroke: rgba(255, 255, 255, 0.85);
    animation: spin 1.5s infinite;
}

@keyframes spin {
  0% {
      stroke-dasharray: 1, 150;
      stroke-dashoffset: 0;
  }

  50% {
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -35;
  }

  100% {
      stroke-dasharray: 90, 150;
      stroke-dashoffset: -124;
  }
}

@keyframes spindiv {
  from {
      transform: rotate(0deg);
  }

  to {
      transform: rotate(360deg);
  }
}

.spinner-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner-wrapper {
  display: flex;
  width: 25px;
  height: 25px;
  animation: spindiv 2s linear infinite;
}

.spinner-circle {
  stroke: #000000;
  animation: spin 1.5s infinite;
}