<style>
/* 全局样式重置与基础设置 */
#home {
    font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e6e6e6;
    line-height: 1.6;
}

/* 头部导航栏样式 */
#header {
    background: rgba(26, 30, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 85, 104, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
}

#header #navigator {
    border: none !important;
}

#header #navigator a {
    color: #e6e6e6 !important;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

#header #navigator a:hover {
    background: rgba(90, 103, 216, 0.2) !important;
    color: #7e8cea !important;
    transform: translateY(-2px);
}

/* 主内容区域样式 */
#main {
    background: rgba(23, 25, 35, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 24px auto;
    padding: 24px;
    backdrop-filter: blur(15px);
}

/* 侧边栏样式 */
#sideBar {
    background: rgba(30, 34, 48, 0.7) !important;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(74, 85, 104, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#sideBar h3 {
    color: #7e8cea;
    border-bottom: 2px solid #7e8cea;
    padding-bottom: 10px;
    font-weight: 600;
}

#sideBar ul li a {
    color: #cbd5e0 !important;
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.2s;
}

#sideBar ul li a:hover {
    background: rgba(90, 103, 216, 0.2);
    color: #7e8cea !important;
    padding-left: 16px;
}

/* 博客文章列表样式 */
.day {
    background: rgba(30, 34, 48, 0.7);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(74, 85, 104, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.day:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dayTitle {
    color: #7e8cea !important;
    font-weight: 600;
    border-bottom: 2px solid rgba(126, 140, 234, 0.5);
    padding-bottom: 10px;
}

.postTitle a {
    color: #e6e6e6 !important;
    font-size: 1.4em;
    font-weight: 600;
    transition: color 0.3s;
}

.postTitle a:hover {
    color: #7e8cea !important;
}

.postCon {
    color: #cbd5e0;
    line-height: 1.8;
}

.postDesc {
    color: #8a94a7;
    border-top: 1px solid rgba(74, 85, 104, 0.5);
    padding-top: 12px;
}

/* 按钮样式 */
.button_my_subscriptions,
#btn_edit_post,
#btnSubmit {
    background: linear-gradient(135deg, #7e8cea 0%, #667eea 100%) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px 20px !important;
    color: white !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.button_my_subscriptions:hover,
#btn_edit_post:hover,
#btnSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
}

/* 表单元素样式 */
input[type="text"],
input[type="password"],
textarea {
    background: rgba(26, 30, 42, 0.7) !important;
    border: 1px solid rgba(74, 85, 104, 0.5) !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    color: #e6e6e6 !important;
    transition: all 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
    border-color: #7e8cea !important;
    box-shadow: 0 0 0 3px rgba(126, 140, 234, 0.2) !important;
    outline: none;
}

/* 页脚样式 */
#footer {
    background: rgba(23, 25, 35, 0.9) !important;
    color: #8a94a7 !important;
    padding: 20px 0;
    border-top: 1px solid rgba(74, 85, 104, 0.3);
    text-align: center;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 30, 42, 0.5);
}

::-webkit-scrollbar-thumb {
    background: #7e8cea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #667eea;
}

/* 响应式调整 */
@media (max-width: 768px) {
    #main {
        margin: 12px;
        padding: 16px;
    }
    
    .day {
        padding: 16px;
    }
}
</style>