.wallet-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    background: linear-gradient(180deg, rgba(10, 0, 20, 0.95), rgba(10, 0, 20, 0.75));
    border-bottom: 1px solid rgba(255, 0, 170, 0.4);
    backdrop-filter: blur(8px);
    font-family: 'Arial Black', sans-serif;
    pointer-events: auto;
}

.wallet-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wallet-brand-icon {
    width: 36px;
    height: 36px;
}

.wallet-ticker {
    color: #ff00aa;
    font-size: 18px;
    text-shadow: 0 0 12px rgba(255, 0, 170, 0.8);
}

.wallet-mode-badge {
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(0, 255, 255, 0.15);
    color: #00ffff;
    border: 1px solid #00ffff;
    letter-spacing: 1px;
}

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

.wallet-gasha-balance {
    color: #00ffaa;
    font-size: 13px;
    margin-right: 8px;
    text-shadow: 0 0 8px rgba(0, 255, 170, 0.6);
}

.wallet-btn {
    font-family: 'Arial Black', sans-serif;
    font-size: 11px;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #00ffff;
    background: rgba(0, 0, 0, 0.6);
    color: #00ffff;
    transition: all 0.2s;
}

.wallet-btn:hover {
    background: rgba(0, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.wallet-btn-guest {
    border-color: #aa00ff;
    color: #cc00ff;
}

.wallet-btn-connect.connected {
    border-color: #00ffaa;
    color: #00ffaa;
    box-shadow: 0 0 12px rgba(0, 255, 170, 0.4);
}

.wallet-btn-disconnect {
    padding: 8px 10px;
    border-color: #666;
    color: #999;
    font-size: 14px;
}

.gacha-hint {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 520px;
    text-align: center;
    color: rgba(0, 255, 255, 0.75);
    font-size: 12px;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    z-index: 100;
    pointer-events: none;
}

@media (max-width: 600px) {
    .wallet-bar { padding: 6px 8px; }
    .wallet-ticker { font-size: 14px; }
    .wallet-btn { padding: 6px 10px; font-size: 10px; }
    .gacha-hint { font-size: 10px; max-width: 90%; }
}
