.site-notify-fixed {
    position: fixed;
    left: 8px;
    bottom: 100px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    width: 124px;
    height: min(320px, calc(100vh - 220px));
    min-height: 0;
    overflow: hidden;
    color: #4a4d59;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.site-notify-fixed__header {
    display: flex;
    flex: 0 0 auto;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-notify-fixed__header > i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #3b6ff5;
    font-size: 13px;
}

.site-notify-fixed__title {
    min-width: 0;
    margin: 0;
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.site-notify-fixed__content {
    flex: 1 1 auto;
    min-height: 0;
    padding: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    font-size: 12px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.site-notify-fixed__content > :last-child {
    margin-bottom: 0;
}

.site-notify-fixed__content img,
.site-notify-fixed__content video,
.site-notify-fixed__content iframe {
    max-width: 100%;
    height: auto;
}

.site-notify-fixed__content a {
    color: #3b6ff5;
}

[data-bs-theme="dark"] .site-notify-fixed {
    color: #b0b5bd;
    background: rgba(33, 36, 43, 0.95);
    border-color: rgba(255, 255, 255, 0.04);
}

[data-bs-theme="dark"] .site-notify-fixed__header {
    border-color: rgba(255, 255, 255, 0.05);
}

[data-bs-theme="dark"] .site-notify-fixed__header > i,
[data-bs-theme="dark"] .site-notify-fixed__content a {
    color: #89a9f9;
}

@media (max-width: 767.98px) {
    .site-notify-fixed {
        display: none;
    }
}
