.global-verify-banner {
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: 46px;
    background: rgba(220, 38, 38, 0.15);
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    color: #ff8888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 1500;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.global-verify-banner.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.global-verify-banner a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
    padding: 4px 12px;
    background: rgba(220, 38, 38, 0.8);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.2);
}

.global-verify-banner a:hover {
    background: #ff4444;
    transform: translateY(-1px);
}

body.verify-pending .dash-wrapper {
    padding-top: 170px;
    transition: padding-top 0.4s ease;
}

.global-welcome-note {
    position: fixed;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(18, 18, 18, 0.92);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    padding: 8px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1490;
    color: #d8d8d8;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    transition: top 0.9s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
    opacity: 0;
}

.global-welcome-note.show {
    top: 74px;
    opacity: 1;
}

.global-welcome-note img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.15));
}

.global-welcome-note .name {
    color: #fff;
    font-weight: 800;
}

.user-avatar {
    position: relative;
    overflow: visible;
}

.user-avatar.is-banned::after {
    content: "!";
    position: absolute;
    top: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #ff4444;
    color: #000;
    font-size: 10px;
    font-weight: 900;
    line-height: 14px;
    text-align: center;
    box-shadow:
        0 0 0 2px rgba(5, 5, 5, 0.95),
        0 0 10px rgba(255, 68, 68, 0.9);
    pointer-events: none;
}

.global-switcher-host {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.global-platform-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.global-platform-switcher a {
    margin: 0;
    color: #bdbdbd;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.global-platform-switcher a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.global-platform-switcher a.active {
    color: #0b0b0b;
    background: #fff;
}

.global-platform-switcher-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1200;
}

@media (max-width: 600px) {
    .global-verify-banner {
        top: 75px;
        font-size: 0.8rem;
        flex-direction: column;
        height: auto;
        padding: 10px;
        gap: 5px;
    }
    body.verify-pending .dash-wrapper {
        padding-top: 180px;
    }
    .global-welcome-note {
        padding: 7px 12px;
        font-size: 0.8rem;
        width: 90%;
        justify-content: center;
    }
    .global-welcome-note.show {
        top: 68px;
    }
    .global-welcome-note img {
        width: 20px;
        height: 20px;
    }
    .global-platform-switcher {
        gap: 4px;
        padding: 3px;
    }
    .global-platform-switcher a {
        font-size: 0.75rem;
        padding: 5px 8px;
    }
    .global-platform-switcher-center {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0.95);
    }
}
