.notification-btn {
    position: relative;
    cursor: pointer;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ff2bd6;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 17px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.75);
}

.notification-panel {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.82);
    padding: 68px 10px 12px;
}

.notification-panel[hidden] {
    display: none;
}

.notification-panel-inner {
    width: 100%;
    max-width: 460px;
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    margin: 0 auto;
    padding: 12px;
    background: #050505;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 18px;
}

.notification-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.notification-header strong {
    font-size: 16px;
}

.notification-close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 999px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.notification-item {
    margin-top: 9px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.045);
}

.notification-item.high {
    border-color: rgba(255,43,214,0.55);
}

.notification-item-title {
    font-size: 14px;
    font-weight: 900;
}

.notification-item-message {
    margin: 7px 0 8px;
    color: rgba(255,255,255,0.74);
    font-size: 13px;
    line-height: 1.35;
}

.notification-date {
    color: rgba(255,255,255,0.42);
    font-size: 11px;
}

.notification-empty {
    padding: 16px 4px 6px;
    color: rgba(255,255,255,0.62);
    font-size: 13px;
    text-align: center;
}

.notification-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.notification-action-btn {
    width: 100%;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: #ff2bd6;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.notification-action-btn.secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
}

.notification-seen {
    opacity: 0.55;
}

.direct-message-panel {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(0,0,0,0.82);
}

.direct-message-panel[hidden] {
    display: none;
}

.direct-message-card {
    width: 100%;
    max-width: 420px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.16);
    background: #050505;
    box-shadow: 0 18px 60px rgba(0,0,0,0.5);
}

.direct-message-kicker {
    color: #00e5ff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.direct-message-title {
    margin-top: 7px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
}

.direct-message-body {
    margin-top: 10px;
    color: rgba(255,255,255,0.76);
    font-size: 15px;
    line-height: 1.42;
    white-space: pre-wrap;
}

.direct-message-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.direct-message-btn {
    width: 100%;
    padding: 12px;
    border: 0;
    border-radius: 12px;
    background: #ff2bd6;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
}

.direct-message-btn.secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
}
