.nprd-container {
    position: fixed;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.nprd-bell-wrapper {
    position: relative;
    cursor: pointer;
    background: #ffffff;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.nprd-bell-wrapper:hover {
    transform: scale(1.08);
}

.nprd-bell-svg {
    width: 24px;
    height: 24px;
}

.nprd-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.nprd-submenu {
    position: absolute;
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 15px;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nprd-submenu.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nprd-post-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nprd-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    background-color: rgba(0,0,0,0.05);
}

.nprd-content-wrapper {
    display: flex;
    flex-direction: column;
}

.nprd-post-item h4 {
    margin: 0 0 6px 0;
    font-size: 14px;
    line-height: 1.4;
}

.nprd-post-item p {
    margin: 0 0 10px 0;
    font-size: 12px;
    line-height: 1.4;
}

.nprd-post-link {
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
}

.nprd-post-link:hover {
    text-decoration: underline;
}

.nprd-loading {
    font-size: 12px;
    text-align: center;
    padding: 10px 0;
}