#propfirm-pn-container {
    position: fixed;
    z-index: 999999;
    padding: 20px;
}

#propfirm-pn-container.bottom-left { bottom: 0; left: 0; }
#propfirm-pn-container.bottom-right { bottom: 0; right: 0; }
#propfirm-pn-container.top-left { top: 0; left: 0; }
#propfirm-pn-container.top-right { top: 0; right: 0; }

#propfirm-pn-notification {
    background: #1a1a1d;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 350px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

#propfirm-pn-notification.pn-hidden {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    pointer-events: none;
}

#propfirm-pn-container.top-left #propfirm-pn-notification.pn-hidden,
#propfirm-pn-container.top-right #propfirm-pn-notification.pn-hidden {
    transform: translateY(-50px) scale(0.9);
}

.pn-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background: #2a2a2d;
}

.pn-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pn-content {
    flex: 1;
}

.pn-text {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
}

.pn-buyer { font-weight: 700; color: #f8df51; }
.pn-product { font-weight: 600; color: #fff; }

.pn-time {
    display: block;
    font-size: 11px;
    color: #aaa;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pn-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
}

.pn-close:hover { color: #fff; }

@media (max-width: 480px) {
    #propfirm-pn-notification {
        max-width: calc(100vw - 40px);
    }
}
