/* 面板主体：悬浮于左侧 */
.recent-updates-sidebar {
    position: fixed;
    top: 150px;
    left: 2vw;
    width: 240px;
    z-index: 998;
    background: rgba(10, 15, 10, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid #988b32;
    box-shadow: inset 0 0 10px rgba(152, 139, 50, 0.1), 0 5px 15px rgba(0, 0, 0, 0.5);
    padding: 0 0 15px 0;
    font-family: monospace, sans-serif;
}

@media screen and (max-width: 1350px) {
    .recent-updates-sidebar.mobile-hide {
        display: none !important;
    }
}

.sidebar-header {
    background: #988b32;
    color: #000;
    padding: 6px 15px;
    font-family: 'ZCOOLQingKeHuangYou-Regular', monospace;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: bold;
}

.sidebar-list {
    list-style: none;
    padding: 0 15px;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(152, 139, 50, 0.3);
    padding-bottom: 10px;
}

.sidebar-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-list a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.sidebar-post-title {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.sidebar-post-date {
    color: #666;
    font-size: 0.8rem;
    font-family: 'ZCOOLQingKeHuangYou-Regular', monospace;
    transition: color 0.3s;
}

.sidebar-list a:hover .sidebar-post-title {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

.sidebar-list a:hover .sidebar-post-date {
    color: #988b32;
}
