/*
[name]液态玻璃[/name]
Power by pixtech.org
液态玻璃风格个人空间模板 - 流动的光影艺术
*/

/* 全局样式 */
body {
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    background-attachment: fixed;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e8e8e8;
    min-height: 100vh;
    overflow-x: hidden;
}

/* 液态玻璃效果基础类 */
.glass-effect {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: liquidFlow 3s ease-in-out infinite;
}

@keyframes liquidFlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* 头部样式 */
#hd {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.15) 0%, rgba(255, 119, 198, 0.15) 100%);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: none;
    border-radius: 0 0 30px 30px;
    box-shadow: 
        0 8px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 30px;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

#hd::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: liquidFlow 4s ease-in-out infinite;
}

#hd h2 {
    color: #fff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(120, 219, 255, 0.2);
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* 导航样式 */
#nv {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.12) 0%, rgba(255, 119, 198, 0.12) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 30px;
    margin: 15px 0;
    padding: 10px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

#nv::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: liquidFlow 5s ease-in-out infinite;
}

#nv li {
    margin: 0 5px;
}

#nv li a, #nv li a:visited {
    color: #fff;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
    border-radius: 25px;
    padding: 10px 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

#nv li a:hover {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.2) 0%, rgba(255, 119, 198, 0.2) 100%) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(120, 219, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

#nv li.a a {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.25) 0%, rgba(255, 119, 198, 0.25) 100%);
    color: #fff;
    font-weight: 600;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 0 15px rgba(120, 219, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 主内容区域 */
#ct, .n, .w {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.08) 0%, rgba(255, 119, 198, 0.08) 100%) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 25px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

#ct::before, .n::before, .w::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: liquidFlow 6s ease-in-out infinite;
    z-index: 1;
}

/* 内容块样式 */
.bm {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.06) 0%, rgba(255, 119, 198, 0.06) 100%);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.bm::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    animation: liquidFlow 7s ease-in-out infinite;
    z-index: 1;
}

.bm:hover {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(120, 219, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.25);
}

.bm_h {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.15) 0%, rgba(255, 119, 198, 0.15) 100%);
    border: none;
    border-radius: 20px 20px 0 0;
    padding: 15px 20px;
    color: #fff;
    font-weight: 600;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.bm_c {
    padding: 20px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.04) 0%, rgba(255, 119, 198, 0.04) 100%);
    color: #e8e8e8;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 表格样式 */
.tl .th {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-weight: 600;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tl .td {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 10px;
    transition: background 0.3s ease;
}

.tl .td:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 底部样式 */
#ft {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.1) 0%, rgba(255, 119, 198, 0.1) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-radius: 30px 30px 0 0;
    margin-top: 40px;
    padding: 25px 0;
    color: #fff;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 -8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

#ft::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: liquidFlow 8s ease-in-out infinite;
}

/* 链接样式 */
a {
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

a:hover {
    color: #fff;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(120, 219, 255, 0.6),
        0 0 35px rgba(255, 119, 198, 0.4);
    transform: translateY(-1px);
}

/* 按钮样式 */
.btn, .button, input[type="submit"], input[type="button"], button,
.pn, .pg a, .pg strong, .pgb a, .pgb strong,
.xi2, .xi1, .xw1, .xw0, .y, .n,
.fastlg, .fastlg a, .fastlg button {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.15) 0%, rgba(255, 119, 198, 0.15) 100%) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 25px !important;
    color: #fff !important;
    padding: 8px 18px !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    text-decoration: none !important;
    display: inline-block;
    margin: 3px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.btn:hover, .button:hover, input[type="submit"]:hover, input[type="button"]:hover, button:hover,
.pn:hover, .pg a:hover, .pgb a:hover,
.xi2:hover, .xi1:hover, .xw1:hover, .xw0:hover, .y:hover, .n:hover,
.fastlg:hover, .fastlg a:hover, .fastlg button:hover {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.18) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.25) 0%, rgba(255, 119, 198, 0.25) 100%) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(120, 219, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* 当前页码样式 */
.pg strong, .pgb strong {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.3) 0%, rgba(255, 119, 198, 0.3) 100%) !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 0 20px rgba(120, 219, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* 小按钮样式 */
.pls, .prs, .cl {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 15px !important;
    padding: 4px 10px !important;
    color: #fff !important;
    transition: all 0.3s ease;
}

.pls:hover, .prs:hover, .cl:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
}

/* 输入框样式 */
input[type="text"], input[type="password"], textarea, select {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.08) 0%, rgba(255, 119, 198, 0.08) 100%);
    backdrop-filter: blur(15px) saturate(160%);
    -webkit-backdrop-filter: blur(15px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    color: #e8e8e8;
    padding: 12px 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 100%),
        linear-gradient(45deg, rgba(120, 219, 255, 0.15) 0%, rgba(255, 119, 198, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(120, 219, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* 头像样式 */
.avatar {
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(120, 219, 255, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: liquidFlow 4s ease-in-out infinite;
}

.avatar:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 35px rgba(120, 219, 255, 0.5),
        0 0 60px rgba(255, 119, 198, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

/* 响应式设计 */
@media (max-width: 768px) {
    #ct, .n, .w {
        margin: 10px;
        border-radius: 10px;
    }
    
    .bm {
        border-radius: 8px;
    }
    
    #nv li a {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bm, #ct, .n, .w {
    animation: fadeInUp 0.6s ease-out;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Discuz特定样式修复 */
.tb, .tb th, .tb td {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.tb th {
    background: rgba(255, 255, 255, 0.15) !important;
    font-weight: 600;
}

/* 分页样式 */
.pg, .pgb {
    text-align: center;
    margin: 10px 0;
}

.pg a, .pg strong, .pgb a, .pgb strong {
    margin: 0 2px;
}

/* 表单样式 */
.px, .pt, .pb, .pl, .pr {
    color: #fff !important;
}

/* 标签样式 */
.tag, .tags a {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: #fff !important;
    padding: 3px 8px !important;
    margin: 2px !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.tag:hover, .tags a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
}

/* 状态样式 */
.online, .offline {
    border-radius: 50% !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 消息样式 */
.notice, .alert {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 10px !important;
    color: #fff !important;
    padding: 10px !important;
    margin: 10px 0 !important;
}

/* 工具栏样式 */
.toolbar, .fastnav {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 5px !important;
}

.toolbar a, .fastnav a {
    color: #fff !important;
    padding: 5px 10px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.toolbar a:hover, .fastnav a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-1px);
}