#shp-notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 380px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.shp-notification-toast {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-left: 4px solid #00f5ff;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,245,255,0.1);
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
    pointer-events: auto;
    animation: shpNotifSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.shp-notification-toast:hover {
    border-color: rgba(0, 245, 255, 0.6);
    box-shadow: 0 15px 50px rgba(0,0,0,0.6), 0 0 30px rgba(0,245,255,0.2);
    transform: translateX(-4px);
}

.shp-notification-toast.new-topic {
    border-left-color: #f59e0b;
}

.shp-notification-toast.new-reply {
    border-left-color: #10b981;
}

.shp-notification-toast.shp-notif-exit {
    animation: shpNotifSlideOut 0.3s ease forwards;
}

.shp-notif-type {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.shp-notif-type-icon {
    font-size: 12px;
}

.new-topic .shp-notif-type { color: #f59e0b; }
.new-reply .shp-notif-type { color: #10b981; }

.shp-notif-subject {
    font-weight: 600;
    font-size: 13px;
    color: #f1f5f9;
    margin-bottom: 3px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shp-notif-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #94a3b8;
}

.shp-notif-poster {
    font-weight: 500;
    color: #cbd5e1;
}

.shp-notif-time {
    display: flex;
    align-items: center;
    gap: 3px;
}

.shp-notif-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    line-height: 1;
}

.shp-notif-close:hover {
    color: #e2e8f0;
    background: rgba(255,255,255,0.1);
}

@keyframes shpNotifSlideIn {
    from { opacity: 0; transform: translateX(120px) scale(0.9); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes shpNotifSlideOut {
    from { opacity: 1; transform: translateX(0); }
    to   { opacity: 0; transform: translateX(120px) scale(0.9); }
}

#shp-notif-indicator {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1px solid rgba(0,245,255,0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    font-size: 20px;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

#shp-notif-indicator:hover {
    transform: scale(1.1);
    border-color: rgba(0,245,255,0.6);
    box-shadow: 0 0 20px rgba(0,245,255,0.2);
}

#shp-notif-indicator .shp-notif-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #0f172a;
}

#shp-notif-indicator.pulse {
    animation: shpNotifPulse 1.5s ease infinite;
}

@keyframes shpNotifPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,245,255,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(0,245,255,0); }
}

@media (max-width: 480px) {
    #shp-notifications-container {
        right: 10px;
        left: 10px;
        max-width: none;
        top: 10px;
    }
    .shp-notification-toast {
        padding: 12px 14px;
    }
}
