/* asset/css/navi.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body {
    background: linear-gradient(-45deg, #141e30, #243b55, #00b4db, #0083b0);
    background-size: 400% 400%;
    animation: gradient 23s ease infinite;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* 添加液态背景气泡 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 226, 0.1) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* 动态渐变动画 */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 液态玻璃通用样式 */
.glass-effect {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.glass-effect-light {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.glass-border {
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.glass-border::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05), 
        rgba(255, 255, 255, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 头部与搜索栏容器 - 同一行布局 */
.header-search-container {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
}

.header-search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

/* 标题样式 - 占20% */
.page-title {
    flex: 0 0 20%; /* 占20%宽度 */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
}

.page-title h1 {
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(200, 220, 255, 0.9) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    background-clip: text;
    color: transparent;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
    white-space: nowrap;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.3),
                     0 0 30px rgba(255, 255, 255, 0.2);
    }
    100% {
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.5),
                     0 0 50px rgba(255, 255, 255, 0.3),
                     0 0 75px rgba(255, 255, 255, 0.1);
    }
}

.search-container {
    flex: 1; /* 占剩余80%宽度 */
    min-width: 0;
}

.search-box {
    display: flex;
    width: 90%;
    margin-left: 5%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 12px 40px rgba(0, 103, 184, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.search-box:focus-within::after {
    opacity: 1;
}

.search-box input {
    flex: 1;
    padding: 16px 25px;
    border: none;
    font-size: 1.05rem;
    outline: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.search-button {
    background: linear-gradient(
        135deg, 
        rgba(0, 103, 184, 0.8), 
        rgba(0, 132, 214, 0.8)
    );
    color: white;
    border: none;
    padding: 0 35px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.search-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.search-button:hover {
    background: linear-gradient(
        135deg, 
        rgba(0, 86, 163, 0.9), 
        rgba(0, 103, 184, 0.9)
    );
    box-shadow: 0 0 20px rgba(0, 103, 184, 0.6);
}

.search-button:hover::before {
    left: 100%;
}

.links-section {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 25px;
}

.link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.15) 100%
    );
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.link-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.link-item:hover::before {
    opacity: 1;
}

.link-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.link-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
    z-index: -1;
    opacity: 0.6;
}

.link-item:hover .link-icon {
    transform: rotate(5deg) scale(1.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.link-icon img {
    object-fit: cover;
    border-radius: 14px;
    width: 68px;
    height: 68px;
    position: relative;
    z-index: 2;
}

.link-name {
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

/* 页脚 */
footer {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-top: 20px;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
}

footer p:first-child {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

footer p:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 各链接颜色样式 - 增强液态效果 */
.link-item.douyin .link-icon { 
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85), 
        rgba(51, 51, 51, 0.95)
    ); 
}

.link-item.bilibili .link-icon { 
    background: linear-gradient(135deg, 
        rgba(251, 114, 153, 0.85), 
        rgba(255, 151, 183, 0.95)
    ); 
}

.link-item.fn-connect .link-icon { 
    background: linear-gradient(135deg, 
        rgba(24, 144, 255, 0.85), 
        rgba(64, 169, 255, 0.95)
    ); 
}

.link-item.pan-123 .link-icon { 
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.85), 
        rgba(255, 142, 83, 0.95)
    ); 
}

.link-item.ohub-blog .link-icon { 
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.85), 
        rgba(155, 77, 255, 0.95)
    ); 
}

.link-item.hzc-login .link-icon { 
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.85), 
        rgba(0, 136, 255, 0.95)
    ); 
}

.link-item.icloud .link-icon { 
    background: linear-gradient(135deg, 
        rgba(0, 122, 255, 0.85), 
        rgba(90, 200, 250, 0.95)
    ); 
}

.link-item.google .link-icon { 
    background: linear-gradient(135deg, 
        rgba(66, 133, 244, 0.85), 
        rgba(52, 168, 83, 0.95)
    ); 
}

.link-item.deepseek .link-icon, 
.link-item.mosoteach .link-icon,
.link-item.chaoxing .link-icon {
    background: rgba(240, 243, 248, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .header-search-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .page-title {
        flex: 0 0 auto;
        width: 100%;
        justify-content: center;
    }
    
    .page-title h1 {
        text-align: center;
        font-size: 1.6rem;
    }
    
    .page-title h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .search-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .header-search-container {
        padding: 18px;
        border-radius: 20px;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
    
    .search-box {
        border-radius: 18px;
    }
    
    .search-box input {
        padding: 15px 22px;
    }
    
    .search-button {
        padding: 0 30px;
    }
    
    .links-section {
        padding: 25px;
        border-radius: 22px;
    }
    
    .link-item {
        padding: 22px 18px;
    }
    
    .link-icon {
        width: 65px;
        height: 65px;
        font-size: 2rem;
    }
    
    .link-icon img {
        width: 63px;
        height: 63px;
    }
    
    footer {
        padding: 25px;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
        gap: 20px;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    body {
        animation: gradient 20s ease infinite;
        padding: 15px;
    }
    
    .header-search-container {
        padding: 15px;
        border-radius: 18px;
        gap: 15px;
    }
    
    .page-title h1 {
        font-size: 1.3rem;
    }
    
    .search-box {
        border-radius: 16px;
    }
    
    .search-box input {
        padding: 14px 18px;
        font-size: 1rem;
    }
    
    .search-button {
        padding: 0 25px;
        font-size: 0.95rem;
    }
    
    .links-section {
        padding: 20px;
        border-radius: 20px;
    }
    
    .link-item {
        padding: 18px 15px;
        border-radius: 18px;
    }
    
    .link-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .link-icon img {
        width: 58px;
        height: 58px;
    }
    
    .link-name {
        font-size: 1rem;
    }
    
    footer {
        padding: 20px;
        border-radius: 18px;
    }
    
    footer p:first-child {
        font-size: 1rem;
    }
    
    footer p:last-child {
        font-size: 0.9rem;
    }
}
body.ohub-search-focused * {
    box-sizing: border-box !important;
}

#ohub-search-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 9998 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

body.ohub-search-focused #ohub-search-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

body.ohub-search-focused .header-search-container {
    position: relative;
    z-index: 9999 !important;
    isolation: isolate;
}

body.ohub-search-focused .search-container {
    position: relative;
    z-index: 10000 !important; 
}

body.ohub-search-focused .search-box {
    position: relative;
    z-index: 10001 !important;
    background: rgba(255, 255, 255, 0.3) !important;
    border: 3px solid rgba(255, 255, 255, 0.9) !important;
    box-shadow: 
        0 0 60px rgba(0, 103, 184, 1),
        0 0 0 6px rgba(255, 255, 255, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.12) !important;
    animation: searchPulse 2s infinite !important;
}

@keyframes searchPulse {
    0%, 100% { box-shadow: 0 0 60px rgba(0, 103, 184, 1), 0 0 0 6px rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 80px rgba(0, 103, 184, 1.2), 0 0 0 8px rgba(255, 255, 255, 0.7); }
}

body.ohub-search-focused .search-box input {
    color: white !important;
    font-weight: 600 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8) !important;
    font-size: 1.2rem !important;
}

body.ohub-search-focused .search-button {
    background: linear-gradient(135deg, #0067b8, #0084d6) !important;
    box-shadow: 0 0 40px rgba(0, 103, 184, 1) !important;
    font-weight: 700 !important;
}

body.ohub-search-focused .container > *:not(.header-search-container) {
    filter: brightness(0.7) !important;
    opacity: 0.8 !important;
    pointer-events: none !important;
    transition: all 0.3s ease !important;
}

body.ohub-search-focused .links-section,
body.ohub-search-focused footer {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

@media (max-width: 768px) {
    body.ohub-search-focused .search-box {
        transform: scale(1.15) !important;
    }
    
    body.ohub-search-focused .search-box input {
        font-size: 1.1rem !important;
    }
}

/* ============================== */
/* 快速直达博客内容区域样式 */
/* ============================== */

.blog-quick-access-section {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

.blog-quick-access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.blog-quick-access-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-quick-access-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.blog-quick-access-title i {
    color: #8a2be2;
    font-size: 1.6rem;
    text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.blog-quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.blog-quick-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.blog-quick-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.blog-quick-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
}

.blog-quick-link:hover::before {
    opacity: 1;
}

.blog-quick-link-content {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.blog-quick-link-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(138, 43, 226, 0.15);
    color: #8a2be2;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.blog-quick-link:hover .blog-quick-link-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(138, 43, 226, 0.25);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
}

.blog-quick-link-text {
    flex: 1;
    min-width: 0;
}

.blog-quick-link-title {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.95);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-quick-link-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-quick-link-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0.7;
    margin-left: 5px;
}

.blog-quick-link:hover .blog-quick-link-arrow {
    opacity: 1;
    transform: translateX(5px);
    color: #8a2be2;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .blog-quick-access-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-quick-access-section {
        padding: 20px;
        border-radius: 20px;
    }
    
    .blog-quick-access-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .blog-quick-access-title {
        font-size: 1.2rem;
    }
    
    .blog-quick-link {
        padding: 14px 18px;
        min-height: 56px;
    }
    
    .blog-quick-link-title {
        font-size: 1rem;
    }
    
    .blog-quick-link-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .blog-quick-access-section {
        padding: 18px 15px;
        border-radius: 18px;
    }
    
    .blog-quick-link {
        padding: 12px 16px;
        min-height: 52px;
    }
    
    .blog-quick-link-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* 搜索框变暗效果时，博客区域也变暗 */
body.ohub-search-focused .blog-quick-access-section {
    filter: brightness(0.7) !important;
    opacity: 0.8 !important;
    pointer-events: none !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
/* ============================== */
/* 简约版样式 - 禁用液态玻璃效果 */
/* ============================== */

body.simple-mode {
    /* 简约背景 */
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) !important;
    animation: none !important;
}

body.simple-mode::before {
    display: none !important;
}

/* 简约版头部 */
body.simple-mode .header-search-container,
body.simple-mode .blog-quick-access-section,
body.simple-mode .links-section,
body.simple-mode footer.glass-effect {
    background: rgba(30, 30, 46, 0.95) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
}

/* 移除玻璃效果的发光和模糊 */
body.simple-mode .glass-effect::before,
body.simple-mode .glass-border::after {
    display: none !important;
}

/* 简约版搜索框 */
body.simple-mode .search-box {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

body.simple-mode .search-box:focus-within {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 0 20px rgba(0, 103, 184, 0.3) !important;
}

/* 简约版链接项 */
body.simple-mode .link-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

body.simple-mode .link-item:hover {
    transform: translateY(-3px) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25) !important;
}

body.simple-mode .link-item:hover .link-icon {
    transform: scale(1.05) !important;
}

/* 简约版博客快速链接 */
body.simple-mode .blog-quick-link {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.simple-mode .blog-quick-link:hover {
    transform: translateY(-3px) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

/* 简约版图标 */
body.simple-mode .link-icon::before,
body.simple-mode .blog-quick-link::before {
    display: none !important;
}

/* 简约版标题发光效果 */
body.simple-mode .page-title h1 {
    animation: none !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) !important;
}

/* 简约版搜索框变暗效果 */
body.simple-mode.ohub-search-focused #ohub-search-overlay {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(3px) !important;
}

body.simple-mode.ohub-search-focused .search-box {
    box-shadow: 0 0 30px rgba(0, 103, 184, 0.5) !important;
}

/* 简约模式切换提示 */
.simple-mode-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-mode-toggle:hover {
    color: #4CAF50 !important;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}