/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden; /* 防止水平滚动 */
}

/* 跳过导航链接 - 无障碍访问 */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #D4AF37;
    color: white;
    padding: 8px;
    z-index: 1000;
    text-decoration: none;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* 懒加载图片样式 */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

img.lazy.loaded {
    opacity: 1;
}

/* 粒子效果样式 */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

/* 根变量定义 */
:root {
    --ink-black: #0A0A0A;
    --bamboo-green: #2F4F4F;
    --cinnabar-red: #9E2A2B;
    --rice-paper: #F5F5DC;
    --gold: #D4AF37;
    --gray: #6C757D;
    --light-gray: #ADB5BD;
}

/* 全局字体设置 */
body {
    font-family: 'Noto Serif SC', 'ZCOOL XiaoWei', 'SimSun', 'STSong', serif;
    font-size: 1.125rem; /* 增大整体字体大小，从默认16px改为18px */
    background-color: var(--rice-paper);
    color: var(--ink-black);
    /* 使用荷花图片作为背景，增强武侠仙境感 */
    /* 暂时移除背景图片，以避免路径问题 */
    /* background: url('../images/hehua.webp') center/cover fixed; */
    /* background-repeat: no-repeat; */
    /* background-attachment: fixed; */
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* 提升文本可读性 */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--rice-paper);
    border-left: 1px solid var(--gold);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cinnabar-red);
    box-shadow: 0 0 10px rgba(158, 42, 43, 0.8);
}

/* 容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    /* 提升容器的响应式表现 */
    display: block;
}

/* 顶部导航栏 - 武侠风格深度优化 */
.navbar {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.98), rgba(158, 42, 43, 0.5), rgba(212, 175, 55, 0.4), rgba(158, 42, 43, 0.5), rgba(10, 10, 10, 0.98));
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.9);
    position: fixed; /* ✅ 改为 fixed 定位，避免被 body overflow-x: hidden 影响 */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100; /* ✅ 提高层级，确保高于公告栏 */
    box-shadow: 
        0 0 25px rgba(158, 42, 43, 0.7),
        0 4px 30px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.3);
    padding: 0.3rem 0;
    background-size: 200% 200%;
    animation: navbarGradientShift 8s ease infinite;
    min-height: 60px; /* 最小高度确保稳定 */
    overflow: visible; /* 允许子元素溢出 */
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.4s ease-out;
    width: 100vw !important; /* 强制占满视口宽度 */
    left: 0 !important;
    right: 0 !important;
}

/* 导航栏底部的倒三角箭头 - 真实DOM元素 */
#navbar-toggle-indicator {
    display: none; /* 默认隐藏 */
    position: absolute; /* ✅ 相对于导航栏定位 */
    bottom: -12px; /* ✅ 位于导航栏底部边框下方，稍微露出一点 */
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.4rem; /* ✅ 增大字体，让倒三角更明显 */
    color: #FFD700;
    z-index: 1101;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 215, 0, 0.5); /* ✅ 增强光晕效果 */
    opacity: 0.9;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    padding: 0; /* ✅ 移除内边距，只保留倒三角本身 */
    background: transparent; /* ✅ 移除背景色，只显示倒三角 */
    border-radius: 0;
}

#navbar-toggle-indicator.visible {
    display: block;
}

#navbar-toggle-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 1), 0 0 15px rgba(255, 215, 0, 0.6);
}

/* ✅ 导航栏切换按钮（隐藏时显示 ▲） */
#navbar-toggle-btn {
    display: none;
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1102;
    font-size: 1.8rem;
    color: #FFD700;
    cursor: pointer;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    user-select: none;
    line-height: 1;
    padding: 5px 15px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 0 0 10px 10px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-top: none;
}

#navbar-toggle-btn.visible {
    display: block;
    opacity: 0.9;
    pointer-events: auto;
}

#navbar-toggle-btn:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
}

/* ✅ 导航栏隐藏按钮（开启时显示 ×） */
#navbar-hide-btn {
    display: none;
    position: fixed;
    top: 5px;
    right: 15px;
    z-index: 1102;
    font-size: 1.2rem;
    color: rgba(212, 175, 55, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    line-height: 1;
    padding: 3px 8px;
    border-radius: 5px;
}

#navbar-hide-btn:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: scale(1.2);
}

/* 导航栏隐藏状态 - 卷帘门效果（完全收起） */
.navbar.hidden {
    max-height: 0; /* 完全收起，不占空间 */
    padding: 0;
    overflow: hidden; /* 隐藏内容 */
    opacity: 0; /* 完全透明 */
    pointer-events: none; /* 隐藏时不拦截任何点击事件 */
    transition: max-height 0.4s ease-out, padding 0.4s ease-out, opacity 0.3s ease;
    width: 100vw !important; /* 强制占满视口宽度 */
    left: 0 !important;
    right: 0 !important;
    background: transparent !important; /* 隐藏时背景透明 */
    border-bottom: none !important; /* 隐藏时移除边框 */
    box-shadow: none !important; /* 隐藏时移除阴影 */
    position: fixed !important; /* ✅ 保持 fixed 定位，确保倒三角按钮始终可见 */
    top: 0 !important;
}

/* ✅ 切换按钮样式已由上方 #navbar-toggle-btn 统一定义 */

/* 导航栏渐变动画 */
@keyframes navbarGradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 15px 0.3rem 25px !important;
    gap: 1.5rem;
    max-width: 100% !important;
    margin: 0 !important;
    width: 100% !important;
    position: relative;
}

/* 防止导航栏隐藏时宽度变化 */
.navbar.hidden .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important; /* 隐藏时移除padding */
    margin: 0 !important;
}

/* 确保导航栏在隐藏状态下不占据任何空间 */
.navbar.hidden > * {
    display: none !important;
}

/* 导航栏正常状态 - 保持 fixed 定位 */
.navbar:not(.hidden) {
    position: fixed !important;
}

/* Logo */
.logo {
    flex-shrink: 0;
    font-size: 2.6rem;
    margin: 0 !important;
}

/* 导航菜单 - 从左到右依次排列，紧挨着Logo */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0 !important;
    margin-left: 0 !important;
    padding: 0 !important;
}

.logo {
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 2.4rem;
    color: #D4AF37;
    text-shadow: 
        0 0 10px rgba(158, 42, 43, 0.8),
        1px 1px 2px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.3);
    display: inline-block;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.2rem 0.5rem;
    border-radius: 0;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(158, 42, 43, 0.3) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 
        0 0 15px rgba(158, 42, 43, 0.9),
        2px 2px 3px rgba(0, 0, 0, 1),
        0 0 25px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.4);
}

.logo:hover::before {
    opacity: 1;
}

.logo i {
    color: #D4AF37;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.4);
    font-size: 1.8rem;
    animation: cloudFloat 4s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        text-shadow: 
            0 0 10px rgba(212, 175, 55, 0.8),
            0 0 20px rgba(212, 175, 55, 0.6),
            0 0 30px rgba(212, 175, 55, 0.4);
    }
    25% { 
        transform: translateY(-5px) translateX(5px) scale(1.02); 
        text-shadow: 
            0 0 12px rgba(212, 175, 55, 0.9),
            0 0 25px rgba(212, 175, 55, 0.7),
            0 0 35px rgba(212, 175, 55, 0.5);
    }
    50% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        text-shadow: 
            0 0 10px rgba(212, 175, 55, 0.8),
            0 0 20px rgba(212, 175, 55, 0.6),
            0 0 30px rgba(212, 175, 55, 0.4);
    }
    75% { 
        transform: translateY(5px) translateX(-5px) scale(1.02); 
        text-shadow: 
            0 0 12px rgba(212, 175, 55, 0.9),
            0 0 25px rgba(212, 175, 55, 0.7),
            0 0 35px rgba(212, 175, 55, 0.5);
    }
}

/* 导航菜单 - 从左到右依次排列，紧挨着Logo */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    flex-grow: 1;
    justify-content: center;
}

/* 举报链接样式 */
.nav-menu li a.report-link {
    color: #e74c3c !important;
    font-weight: bold;
    text-shadow: 
        0 0 8px rgba(231, 76, 60, 0.6),
        1px 1px 2px rgba(0, 0, 0, 0.8);
}

.nav-menu li a.report-link:hover {
    background: rgba(231, 76, 60, 0.15);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
}

/* 移除之前添加的独立report-btn样式 */

.nav-menu li a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 0.45rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'STKaiti', 'KaiTi', 'SimKai', 'FangSong', 'STFangsong', serif;
    text-shadow: 
        0 0 8px rgba(158, 42, 43, 0.6),
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(212, 175, 55, 0.5);
    display: inline-block;
    background: transparent;
    border: none;
    backdrop-filter: none;
    white-space: nowrap;
}

.nav-menu li a:not(.tooltip) {
    overflow: hidden;
}

.nav-menu li a:hover {
    color: #D4AF37;
    background: rgba(158, 42, 43, 0.3);
    transform: translateY(-3px);
    text-shadow: 
        0 0 15px rgba(158, 42, 43, 0.9),
        1px 1px 2px rgba(0, 0, 0, 1),
        0 0 25px rgba(212, 175, 55, 0.8),
        0 0 35px rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 0 15px rgba(158, 42, 43, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(212, 175, 55, 0.6);
    border-color: rgba(212, 175, 55, 0.6);
    animation: linkGlow 0.5s ease-in-out;
}

/* 禁用悬浮效果 */
.nav-menu li a.no-hover:hover {
    color: #D4AF37;
    background: transparent;
    transform: none;
    text-shadow: 
        0 0 8px rgba(158, 42, 43, 0.6),
        1px 1px 2px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(212, 175, 55, 0.5);
    box-shadow: none;
    border-color: transparent;
    animation: none;
}

/* 禁用工具提示效果 */
.nav-menu li a.no-hover.tooltip::after,
.nav-menu li a.no-hover.tooltip::before {
    display: none !important;
}

.nav-menu li a.no-hover.tooltip:hover::after,
.nav-menu li a.no-hover.tooltip:hover::before {
    display: none !important;
}

/* 链接发光动画 */
@keyframes linkGlow {
    0%, 100% {
        box-shadow: 
            0 0 15px rgba(158, 42, 43, 0.5),
            0 6px 20px rgba(0, 0, 0, 0.4),
            0 0 25px rgba(212, 175, 55, 0.6);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(158, 42, 43, 0.7),
            0 6px 30px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(212, 175, 55, 0.8);
    }
}

/* 移除导航菜单链接下方的下划线 */
/* .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(245, 245, 220, 0.7);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
} */

/* 工具提示样式 */
.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.98), rgba(158, 42, 43, 0.5), rgba(212, 175, 55, 0.4), rgba(158, 42, 43, 0.5), rgba(10, 10, 10, 0.98));
    color: var(--gold);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--gold);
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: 'STKaiti', 'KaiTi', 'SimKai', 'FangSong', 'STFangsong', serif;
}

.tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--gold) transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip:hover::after,
.tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.tooltip:hover::before {
    transform: translateX(-50%) translateY(0);
}

/* 移动端汉堡菜单 */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hamburger:hover {
    background-color: rgba(158, 42, 43, 0.3);
    border-color: rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: rgba(212, 175, 55, 0.9);
    box-shadow: 0 0 10px rgba(158, 42, 43, 0.6), 0 0 15px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* 滚动时导航栏样式变化 */
.navbar.scrolled {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.98), rgba(158, 42, 43, 0.5), rgba(212, 175, 55, 0.4), rgba(158, 42, 43, 0.5), rgba(10, 10, 10, 0.98));
    padding: 0.3rem 20px;
    box-shadow: 
        0 0 25px rgba(158, 42, 43, 0.8),
        0 4px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.6),
        inset 0 1px 0 rgba(212, 175, 55, 0.4);
    border-bottom: 2px solid rgba(212, 175, 55, 1);
    animation: navbarSlideDown 0.3s ease-out, navbarGradientShift 8s ease infinite 0.3s;
    background-size: 200% 200%;
}

/* 导航栏滑入动画 */
@keyframes navbarSlideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 首页横幅 */
.banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    background: transparent;
    display: flex;
    text-align: center;
    color: var(--rice-paper);
    overflow: hidden;
    margin-top: 0; /* 确保与导航栏无缝衔接 */
    transition: height 0.4s ease; /* banner高度平滑过渡 */
}

/* banner底部不添加任何遮罩层，避免割裂感 */
.banner::after {
    content: none;
}

/* 移除不存在的墨水滴溅效果 */

.banner-content {
    position: absolute; /* 改为绝对定位 */
    top: 45%; /* 垂直居中偏上一点 */
    left: 50%; /* 水平居中 */
    transform: translate(-50%, -50%); /* 精确居中 */
    z-index: 2;
    max-width: 800px;
    width: 90%; /* 限制最大宽度 */
}

.banner h1 {
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 5.5rem;
    margin-bottom: 0.8rem;
    color: transparent;
    background: linear-gradient(180deg, #fff5c0 0%, #f5e07a 30%, #d4af37 65%, #b8942a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.7)) drop-shadow(0 0 20px rgba(212,175,55,0.5)) drop-shadow(0 0 40px rgba(180,140,40,0.25));
    letter-spacing: 0.35rem;
    text-align: center;
    line-height: 1.1;
}

.banner p {
    font-size: 1.6rem;
    font-weight: normal;
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    margin-bottom: 2rem;
    color: rgba(255, 245, 192, 0.9);
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.8)) drop-shadow(0 0 10px rgba(212,175,55,0.35));
    animation: fadeInUp 1s ease-out 0.3s both;
    letter-spacing: 0.25rem;
    text-align: center;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    box-sizing: border-box;
}

/* 浮动文字效果 */
@keyframes floatText {
    0%, 100% { 
        transform: perspective(600px) rotateX(15deg) translateY(0px); 
        text-shadow: 
            3px 3px 0px rgba(0, 0, 0, 0.6),
            6px 6px 10px rgba(158, 42, 43, 0.9),
            0 0 30px rgba(212, 175, 55, 0.7),
            0 0 60px rgba(212, 175, 55, 0.4);
    }
    50% { 
        transform: perspective(600px) rotateX(15deg) translateY(-20px); 
        text-shadow: 
            3px 3px 0px rgba(0, 0, 0, 0.6),
            6px 6px 15px rgba(158, 42, 43, 1),
            0 0 40px rgba(212, 175, 55, 0.9),
            0 0 80px rgba(212, 175, 55, 0.6);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 帮会介绍板块 */
.guild-intro {
    padding: 5rem 0;
    background: linear-gradient(rgba(47, 79, 79, 0.05), rgba(47, 79, 79, 0.1)), 
                url('../images/xueshan.webp') center/cover no-repeat;
    background-repeat: no-repeat;
    /* 移除 fixed，避免与banner背景割裂 */
    position: relative;
}

.guild-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bamboo-green), transparent);
}

.guild-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bamboo-green), transparent);
}

.section-title {
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold);
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scroll-container {
    position: relative;
    background-color: rgba(245, 245, 220, 0.8);
    border: 3px solid var(--gold);
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.scroll-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.scroll-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(90deg, var(--gold), transparent 50%, var(--gold));
    opacity: 0.3;
}

.scroll-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(90deg, var(--gold), transparent 50%, var(--gold));
    opacity: 0.3;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.vertical-text-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 2rem;
    background-color: rgba(47, 79, 79, 0.1);
    border-radius: 10px;
    border: 3px solid var(--cinnabar-red);
    width: 100%;
    height: 100%;
    align-items: center;
    justify-items: center;
    box-sizing: border-box;
}

.vertical-text-column {
    writing-mode: vertical-rl;
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 2.5rem;
    color: var(--cinnabar-red);
    letter-spacing: 1.5rem;
    line-height: 3;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 350px;
    box-sizing: border-box;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}



.horizontal-text {
    font-family: 'STKaiti', 'KaiTi', 'SimKai', 'FangSong', 'STFangsong', serif;
    font-size: 1.4rem;
    line-height: 2.1;
    color: var(--ink-black);
    text-align: justify;
    font-weight: bold;
    letter-spacing: 0.04em;
    word-spacing: 0.06em;
    padding: 0.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    writing-mode: horizontal-tb !important;
    direction: ltr !important;
    text-orientation: mixed !important;
    background-color: transparent !important;
}

.personal-section .horizontal-text {
    writing-mode: horizontal-tb !important;
    direction: ltr !important;
    text-orientation: mixed !important;
}

.personal-section .scroll-container {
    writing-mode: horizontal-tb !important;
    direction: ltr !important;
    text-orientation: mixed !important;
}

.personal-section .intro-content {
    writing-mode: horizontal-tb !important;
    direction: ltr !important;
    text-orientation: mixed !important;
    grid-template-columns: 1fr !important;
    gap: 1rem;
}

/* 中心内容卡片样式 */
.recruitment-card.center-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

.recruitment-card.center-content p {
    text-align: center;
    margin: 0;
    padding: 0 1rem;
}

.horizontal-text p {
    margin-bottom: 1rem;
}

/* 帮会招新板块 */
.recruitment {
    padding: 5rem 0;
    background: linear-gradient(rgba(47, 79, 79, 0.05), rgba(47, 79, 79, 0.1)), 
                url('../images/tiangon.png') center/cover no-repeat;
    background-repeat: no-repeat;
    /* 移除 fixed，避免与banner背景割裂 */
}

.recruitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.recruitment-card {
    background-color: rgba(245, 245, 220, 0.85);
    border: 3px solid var(--gold);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12),
                0 0 20px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
    text-align: center;
    /* 提升卡片的视觉层次感 */
    backdrop-filter: blur(10px);
}

.recruitment-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(158, 42, 43, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* 悬浮粒子效果 */
.recruitment-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(212, 175, 55, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.recruitment-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(212, 175, 55, 0.4);
    border-color: var(--gold);
    background-color: rgba(245, 245, 220, 0.95);
}

.recruitment-card:hover::before {
    opacity: 0;
}

.recruitment-card:hover::after {
    opacity: 0;
}

.recruitment-card:hover h3 {
    color: var(--gold);
    transform: translateY(-5px);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.recruitment-card:hover li {
    transform: translateX(5px);
    color: var(--ink-black);
}

.recruitment-card h3 {
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin: 0 0 0.8rem 0;
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.recruitment-card ul {
    list-style: none;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.recruitment-card li,
.recruitment-card p {
    font-family: 'STKaiti', 'KaiTi', 'SimKai', 'FangSong', 'STFangsong', serif;
    font-size: 1.05rem;
    margin: 0;
    color: var(--ink-black);
    font-weight: bold;
    line-height: 1.5;
    word-break: break-word;
}

.recruitment-card li {
    padding-left: 1.8rem;
    position: relative;
    display: flex;
    align-items: center;
}

.recruitment-card p {
    padding: 0;
    text-align: center;
    max-width: 100%;
}

.recruitment-card li::before {
    content: '•';
    color: var(--cinnabar-red);
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    text-align: center;
}

/* 英华流韵集景板块 */
.members {
    padding: 5rem 0;
    background: linear-gradient(rgba(47, 79, 79, 0.05), rgba(47, 79, 79, 0.1)), 
                url('../images/liuxing.webp') center/cover fixed;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.members-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    /* 🎯 暂时禁用防止闪烁，先恢复显示 */
    /* opacity: 0;
    transition: opacity 0.3s ease-in; */
}

/* .members-grid.loaded {
    opacity: 1;
} */

/* 🏆 颁奖台容器 - 特殊成员区域 */
.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2rem;
    width: 100%;
    padding: 2rem 0;
    min-height: 500px;
}

/* 🥇 主C位（冠军）- "帝王荣耀"主题 - 最高，居中 */
.member-card.podium-first {
    /* 🔧 修复：移除 transform，避免重渲染时跳动 */
    z-index: 10;
    animation: breathing 2s ease-in-out infinite, cPositionGlow 2s ease-in-out infinite alternate, imperialAura 4s ease-in-out infinite;
    animation-fill-mode: forwards;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(255, 215, 0, 1),
        0 0 90px rgba(212, 175, 55, 0.8),
        0 0 120px rgba(255, 215, 0, 0.6),
        inset 0 0 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, rgba(255, 250, 220, 0.98), rgba(255, 245, 200, 0.95));
    border: 6px solid #D4AF37;
    min-height: 450px; /* 增加高度，更显尊贵 */
    max-width: 360px; /* 增加宽度 */
    width: 100%;
    padding: 3rem 2.5rem; /* 增大内边距 */
    position: relative;
    overflow: visible; /* 允许皇冠和光效溢出 */
    /* 🎯 鼠标悬停透明效果 - 主C位 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 主C位鼠标悬停变透明 */
.member-card.podium-first:hover {
    background: linear-gradient(135deg, rgba(255, 250, 220, 0.3), rgba(255, 245, 200, 0.2));
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.5),
        0 0 60px rgba(212, 175, 55, 0.4),
        0 0 80px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(212, 175, 55, 0.2);
    transform: scale(0.98);
}

/* 主C位头像更大 - 帝王级 */
.member-card.podium-first .member-avatar {
    width: 160px; /* 从140px增加到160px */
    height: 160px;
    border: 7px solid #D4AF37;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 1),
        0 0 50px rgba(212, 175, 55, 0.8),
        inset 0 0 20px rgba(255, 215, 0, 0.3);
}

/* 主C位取消头像扫描特效 */
.member-card.podium-first .member-avatar::after {
    display: none !important;
}

/* 主C位称号更大更醒目 - 帝王字体 */
.member-card.podium-first .member-name {
    font-size: 2.3rem !important; /* 从2rem增加到2.3rem */
    color: #FFD700 !important;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 1),
        0 0 30px rgba(212, 175, 55, 0.9),
        0 0 45px rgba(255, 215, 0, 0.7),
        2px 2px 6px rgba(0, 0, 0, 0.8) !important;
    font-weight: 900 !important;
    letter-spacing: 0.18em !important; /* 增加字间距 */
}

/* 主C位游戏名 - 金色加粗 */
.member-card.podium-first .member-token {
    font-size: 1.4rem !important; /* 从1.25rem增加到1.4rem */
    color: #D4AF37 !important;
    font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* 主C位皇冠装饰 - 更加华丽 */
.member-card.podium-first::after {
    content: '👑';
    position: absolute;
    top: -30px; /* 向上移动 */
    left: 50%;
    transform: translateX(-50%);
    font-size: 4.5rem; /* 从3.8rem增加到4.5rem */
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 1)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.8));
    animation: crownFloatImperial 3s ease-in-out infinite;
    z-index: 20;
}

@keyframes crownFloatImperial {
    0%, 100% {
        transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateX(-50%) translateY(-12px) rotate(3deg) scale(1.05);
    }
    50% {
        transform: translateX(-50%) translateY(-15px) rotate(0deg) scale(1.1);
    }
    75% {
        transform: translateX(-50%) translateY(-12px) rotate(-3deg) scale(1.05);
    }
}

/* 主C位帝王光环动画 */
@keyframes imperialAura {
    0%, 100% {
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.7),
            0 0 60px rgba(255, 215, 0, 1),
            0 0 90px rgba(212, 175, 55, 0.8),
            0 0 120px rgba(255, 215, 0, 0.6),
            inset 0 0 40px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow: 
            0 30px 80px rgba(0, 0, 0, 0.7),
            0 0 80px rgba(255, 215, 0, 1),
            0 0 120px rgba(212, 175, 55, 1),
            0 0 160px rgba(255, 215, 0, 0.8),
            inset 0 0 60px rgba(212, 175, 55, 0.7);
    }
}

/* 🥈 副C位（亚军）- "银月剑影"主题 - 左侧 */
.member-card.podium-second {
    /*  修复：移除 transform，避免重渲染时跳动 */
    z-index: 9;
    animation: breathing 2.5s ease-in-out infinite, silverGlow 3s ease-in-out infinite alternate;
    animation-fill-mode: forwards;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(192, 192, 192, 0.8),
        0 0 60px rgba(70, 130, 180, 0.6),
        inset 0 0 25px rgba(192, 192, 192, 0.3);
    background: linear-gradient(135deg, rgba(230, 240, 255, 0.95), rgba(176, 224, 230, 0.9));
    border: 4px solid #C0C0C0;
    min-height: 340px; /* 约为主C位420px的80% */
    max-width: 300px;
    width: 100%;
    padding: 2.2rem 1.8rem;
    position: relative;
    /* 🎯 鼠标悬停透明效果 - 副C位 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 副C位鼠标悬停变透明 */
.member-card.podium-second:hover {
    background: linear-gradient(135deg, rgba(230, 240, 255, 0.3), rgba(176, 224, 230, 0.2));
    border-color: rgba(192, 192, 192, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(192, 192, 192, 0.4),
        0 0 40px rgba(70, 130, 180, 0.3),
        inset 0 0 15px rgba(192, 192, 192, 0.2);
    transform: scale(0.98);
}

/* 副C位头像 - 银月边框 */
.member-card.podium-second .member-avatar {
    width: 120px;
    height: 120px;
    border: 5px solid #C0C0C0;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.8), 0 0 30px rgba(70, 130, 180, 0.6);
}

/* 副C位取消头像扫描特效 */
.member-card.podium-second .member-avatar::after {
    display: none !important;
}

/* 副C位称号 - 银蓝色调 */
.member-card.podium-second .member-name {
    font-size: 1.85rem !important;
    color: #E0F0FF !important;
    text-shadow: 
        0 0 10px rgba(192, 192, 192, 0.9),
        0 0 20px rgba(70, 130, 180, 0.7),
        2px 2px 4px rgba(0, 0, 0, 0.6) !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
}

/* 副C位游戏名 - 银色调 */
.member-card.podium-second .member-token {
    font-size: 1.15rem !important;
    color: #B0E0E6 !important;
    font-weight: 600 !important;
    text-shadow: 0 0 8px rgba(176, 224, 230, 0.6);
}

/* 副C位四角剑影装饰 - 替代旋转光环 */
.member-card.podium-second::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* 左上角剑气 */
        linear-gradient(135deg, rgba(192, 192, 192, 0.4) 0%, transparent 30%),
        /* 右上角剑气 */
        linear-gradient(-135deg, rgba(192, 192, 192, 0.4) 0%, transparent 30%),
        /* 左下角剑气 */
        linear-gradient(45deg, rgba(70, 130, 180, 0.3) 0%, transparent 30%),
        /* 右下角剑气 */
        linear-gradient(-45deg, rgba(70, 130, 180, 0.3) 0%, transparent 30%);
    border-radius: 16px;
    animation: swordArrayPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* 副C位月光波纹扩散效果 */
.member-card.podium-second::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(192, 192, 192, 0.6); /* 加粗边框，提高可见度 */
    border-radius: 50%;
    opacity: 0;
    animation: moonRipple 3s ease-out infinite;
    pointer-events: none;
    z-index: 0;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.4), /* 添加光晕效果 */
                inset 0 0 15px rgba(70, 130, 180, 0.3);
}

/* 副C位银色符文装饰（新增）- 顶部居中 */
.member-card.podium-second .rune-decoration {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    color: #E0F0FF;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.9), 0 0 15px rgba(70, 130, 180, 0.7);
    animation: runeFloat 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 20;
}

/* 副C位闪烁光点容器 - 十字星形状（银蓝色） */
.member-card.podium-second .orbit-dot {
    position: absolute;
    font-size: 16px; /* 十字星大小 */
    color: #E0F0FF; /* 银白色 */
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.9), 0 0 15px rgba(70, 130, 180, 0.8);
    pointer-events: none;
    z-index: 15;
}

/* 4个光点沿不同轨道运动 */
.member-card.podium-second .orbit-dot:nth-child(1) {
    animation: orbitMove1 6s linear infinite;
}
.member-card.podium-second .orbit-dot:nth-child(2) {
    animation: orbitMove2 7s linear infinite;
    animation-delay: -1.5s;
}
.member-card.podium-second .orbit-dot:nth-child(3) {
    animation: orbitMove3 8s linear infinite;
    animation-delay: -3s;
}
.member-card.podium-second .orbit-dot:nth-child(4) {
    animation: orbitMove4 6.5s linear infinite;
    animation-delay: -4.5s;
}

@keyframes swordArrayPulse {
    0%, 100% {
        opacity: 0.6;
        box-shadow: inset 0 0 20px rgba(192, 192, 192, 0.2);
    }
    50% {
        opacity: 1;
        box-shadow: inset 0 0 30px rgba(192, 192, 192, 0.4),
                    inset 0 0 40px rgba(70, 130, 180, 0.3);
    }
}

@keyframes moonRipple {
    0% {
        width: 60%;
        height: 60%;
        opacity: 0.8; /* 提高初始透明度 */
        border-width: 4px; /* 加粗起始边框 */
    }
    50% {
        opacity: 0.5; /* 中间阶段保持可见 */
    }
    100% {
        width: 160%;
        height: 160%;
        opacity: 0;
        border-width: 1px;
    }
}

/* 副C位符文浮动动画 */
@keyframes runeFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
        opacity: 1;
    }
}

/* 副C位银月辉光动画 */
@keyframes silverGlow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(192, 192, 192, 0.8),
            0 0 60px rgba(70, 130, 180, 0.6),
            inset 0 0 25px rgba(192, 192, 192, 0.3);
    }
    50% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 50px rgba(192, 192, 192, 1),
            0 0 80px rgba(70, 130, 180, 0.8),
            inset 0 0 35px rgba(192, 192, 192, 0.5);
    }
}

/* 光点轨道运动 - 椭圆轨道1 */
@keyframes orbitMove1 {
    0% {
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    25% {
        top: 50%;
        left: 90%;
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    50% {
        top: 90%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    75% {
        top: 50%;
        left: 10%;
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        top: 10%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

/* 光点轨道运动 - 椭圆轨道2 */
@keyframes orbitMove2 {
    0% {
        top: 15%;
        left: 85%;
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }
    25% {
        top: 85%;
        left: 85%;
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    50% {
        top: 85%;
        left: 15%;
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }
    75% {
        top: 15%;
        left: 15%;
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    100% {
        top: 15%;
        left: 85%;
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.7;
    }
}

/* 光点轨道运动 - 椭圆轨道3 */
@keyframes orbitMove3 {
    0% {
        top: 20%;
        left: 20%;
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
    33% {
        top: 50%;
        left: 80%;
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 1;
    }
    66% {
        top: 80%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
    100% {
        top: 20%;
        left: 20%;
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* 光点轨道运动 - 椭圆轨道4 */
@keyframes orbitMove4 {
    0% {
        top: 80%;
        left: 80%;
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.9;
    }
    50% {
        top: 20%;
        left: 20%;
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
    100% {
        top: 80%;
        left: 80%;
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.9;
    }
}

/* 副C位剑影特效 - 装饰性元素 */
.member-card.podium-second .sword-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.member-card.podium-second .sword-glow::before,
.member-card.podium-second .sword-glow::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.3), transparent);
    opacity: 0;
    animation: swordSlash 4s ease-in-out infinite;
}

.member-card.podium-second .sword-glow::before {
    width: 150%;
    height: 2px;
    top: 30%;
    left: -25%;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.member-card.podium-second .sword-glow::after {
    width: 150%;
    height: 2px;
    top: 70%;
    left: -25%;
    transform: rotate(15deg);
    animation-delay: 2s;
}

@keyframes swordSlash {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%) rotate(-15deg);
    }
    50% {
        opacity: 0.8;
        transform: translateX(100%) rotate(-15deg);
    }
}

/*  次C位（季军）- "星火流萤"主题 - 右侧 */
.member-card.podium-third {
    /*  修复：移除 transform，避免重渲染时跳动 */
    z-index: 9;
    animation: breathing 2.5s ease-in-out infinite, emberGlow 3s ease-in-out infinite alternate;
    animation-fill-mode: forwards;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 140, 0, 0.8),
        0 0 60px rgba(220, 20, 60, 0.6),
        inset 0 0 25px rgba(255, 140, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 245, 230, 0.95), rgba(255, 220, 180, 0.9));
    border: 4px solid #FF8C00;
    min-height: 340px; /* 与副C位相同 */
    max-width: 300px;
    width: 100%;
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
    /* 🎯 鼠标悬停透明效果 - 次C位 */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 次C位鼠标悬停变透明 */
.member-card.podium-third:hover {
    background: linear-gradient(135deg, rgba(255, 245, 230, 0.3), rgba(255, 220, 180, 0.2));
    border-color: rgba(255, 140, 0, 0.4);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 140, 0, 0.4),
        0 0 40px rgba(220, 20, 60, 0.3),
        inset 0 0 15px rgba(255, 140, 0, 0.2);
    transform: scale(0.98);
}

/* 次C位头像 - 火焰边框 */
.member-card.podium-third .member-avatar {
    width: 120px;
    height: 120px;
    border: 5px solid #FF8C00;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.8), 0 0 30px rgba(220, 20, 60, 0.6);
}

/* 次C位取消头像扫描特效 */
.member-card.podium-third .member-avatar::after {
    display: none !important;
}

/* 次C位称号 - 橙红色调 */
.member-card.podium-third .member-name {
    font-size: 1.85rem !important;
    color: #FFE4B5 !important;
    text-shadow: 
        0 0 10px rgba(255, 140, 0, 0.9),
        0 0 20px rgba(220, 20, 60, 0.7),
        2px 2px 4px rgba(0, 0, 0, 0.6) !important;
    font-weight: 900 !important;
    letter-spacing: 0.12em !important;
}

/* 次C位游戏名 - 琥珀色调 */
.member-card.podium-third .member-token {
    font-size: 1.15rem !important;
    color: #FFA500 !important;
    font-weight: 600 !important;
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.6);
}

/* 次C位粒子飘落效果 - 使用星星形状（橙红色） */
.member-card.podium-third .particle {
    position: absolute;
    font-size: 14px; /* 星星图标大小 */
    color: #FFE4B5; /* 米黄色 */
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.9), 0 0 12px rgba(220, 20, 60, 0.7);
    animation: particleFallEmber 4s linear infinite;
    opacity: 0;
    pointer-events: none;
}

/* 使用不同的星星emoji增加视觉丰富度 */
.member-card.podium-third .particle:nth-child(1) {
    left: 10%; 
    animation-delay: 0s; 
}
.member-card.podium-third .particle:nth-child(2) {
    left: 30%; 
    animation-delay: 0.8s; 
}
.member-card.podium-third .particle:nth-child(3) {
    left: 50%; 
    animation-delay: 1.6s; 
}
.member-card.podium-third .particle:nth-child(4) {
    left: 70%; 
    animation-delay: 2.4s; 
}
.member-card.podium-third .particle:nth-child(5) {
    left: 90%; 
    animation-delay: 3.2s; 
}

@keyframes particleFallEmber {
    0% {
        top: -10px;
        opacity: 0;
        transform: translateX(0) scale(0.8);
    }
    10% {
        opacity: 1;
        transform: translateX(-5px) scale(1);
    }
    50% {
        transform: translateX(5px) scale(1.1);
    }
    90% {
        opacity: 1;
        transform: translateX(-3px) scale(0.9);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: translateX(0) scale(0.7);
    }
}

/* 次C位火花辉光动画 */
@keyframes emberGlow {
    0%, 100% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(255, 140, 0, 0.8),
            0 0 60px rgba(220, 20, 60, 0.6),
            inset 0 0 25px rgba(255, 140, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 50px rgba(255, 140, 0, 1),
            0 0 80px rgba(220, 20, 60, 0.8),
            inset 0 0 35px rgba(255, 140, 0, 0.5);
    }
}

/* 👥 普通成员网格 */
.normal-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 0;
}

/* 普通成员卡片统一高度 - 更紧凑 */
.member-card.normal-member {
    min-height: 180px;
    max-width: 260px;
    padding: 1rem 1rem;
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/*  首页普通成员卡片鼠标悬停效果 - 透明+放大 */
.member-card.normal-member:hover {
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.25), rgba(47, 79, 79, 0.03));
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.05); /* 保持原有放大效果 */
}

/* 🏆 旧的C位样式已废弃，使用新的颁奖台布局（podium-first/second/third） */
/* 以下样式仅用于兼容旧代码，不再使用 */

/* 成员卡片淡入动画 */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.member-card {
    animation: breathing 3s ease-in-out infinite;
    /* 🔧 性能优化：启用硬件加速，减少重绘 */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* 🔧 为每个卡片设置不同的动画延迟，避免同步闪烁 */
.member-card:nth-child(1) { animation-delay: 0s; }
.member-card:nth-child(2) { animation-delay: 0.3s; }
.member-card:nth-child(3) { animation-delay: 0.6s; }
.member-card:nth-child(4) { animation-delay: 0.9s; }
.member-card:nth-child(5) { animation-delay: 1.2s; }
.member-card:nth-child(6) { animation-delay: 1.5s; }
.member-card:nth-child(7) { animation-delay: 1.8s; }
.member-card:nth-child(8) { animation-delay: 2.1s; }
.member-card:nth-child(9) { animation-delay: 2.4s; }
.member-card:nth-child(10) { animation-delay: 2.7s; }
.member-card:nth-child(11) { animation-delay: 0.5s; }

/* 月度最佳板块 */
.monthly-best {
    grid-column: 1 / 2;
    grid-row: 1;
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.85), rgba(47, 79, 79, 0.08));
    border: 3px solid var(--gold);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18),
                0 0 20px rgba(212, 175, 55, 0.35);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: breathing 3s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.monthly-best::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.1) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.monthly-best:hover {
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.25), rgba(47, 79, 79, 0.03));
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2),
                0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-15px) scale(1.05);
}

.monthly-best:hover::before {
    opacity: 1;
}

.monthly-best-title {
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.8),
                    1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(212, 175, 55, 1),
                    0 0 30px rgba(212, 175, 55, 0.8),
                    1px 1px 2px rgba(0, 0, 0, 0.5);
    }
}

/* C位样式 - 华丽特殊设计 */
/* 🏆 以下旧的C位/副C位/次C位样式已废弃，使用新的颁奖台布局（podium-first/second/third） */
/* 不再使用 .c-position, .vice-c-position, .sub-c-position 类 */

@keyframes particleFall {
    0% {
        top: -10px;
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: scale(1.2) rotate(360deg);
    }
}

/* 呼吸效果 */
@keyframes breathing {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15),
                    0 0 15px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2),
                    0 0 25px rgba(212, 175, 55, 0.5);
    }
}

.member-card {
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.85), rgba(47, 79, 79, 0.08));
    border: 3px solid var(--gold);
    border-radius: 18px;
    padding: 1.6rem 1.3rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18),
                0 0 20px rgba(212, 175, 55, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: breathing 3s ease-in-out infinite;
    min-height: 282px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    max-width: 246px;
}

/* 卡片装饰性边框光效 */
.member-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(212, 175, 55, 0.6) 50%, 
        transparent 70%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.member-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #E6C750;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(212, 175, 55, 0.6),
                0 0 40px rgba(212, 175, 55, 0.4);
}

.member-card:hover::before {
    opacity: 1;
}

.member-token {
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.85), rgba(47, 79, 79, 0.08));
    border: 3px solid var(--gold);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18),
                0 0 20px rgba(212, 175, 55, 0.35);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: breathing 3s ease-in-out infinite;
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}

.member-token::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, 0.1) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.member-token:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(212, 175, 55, 0.5);
}

.member-token:hover::before {
    opacity: 1;
}

.member-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    margin: 0 auto 0.7rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ink-black), rgba(47, 79, 79, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 0 15px rgba(212, 175, 55, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    /* 头像容器样式 - 不设置background-size，使用img标签 */
}

/* 头像白色光晕扫描效果 */
.member-avatar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1),
        transparent
    );
    border-radius: 50%;
    animation: avatarShimmer 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes avatarShimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* 头像边框装饰 */
.member-avatar::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold), var(--cinnabar-red), var(--gold), var(--cinnabar-red));
    border-radius: 50%;
    z-index: -1;
    animation: borderRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-avatar:hover::before {
    opacity: 1;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.member-token:hover .member-avatar {
    border-color: var(--cinnabar-red);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 0 25px rgba(158, 42, 43, 0.8),
        0 6px 20px rgba(0, 0, 0, 0.6);
}

.member-token:hover .member-avatar img {
    transform: scale(1.2) rotate(-5deg);
}

/* 成员称号样式（第一行，如"风华绝代"）- 金黄色，霸气醒目 */
.member-card .member-name,
.member-card p.member-name {
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 1.65rem;
    color: #FFD700 !important;
    margin-bottom: 0.2rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.7),
                 2px 2px 3px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.member-card .member-name:hover,
.member-card p.member-name:hover {
    color: #FFEA00 !important;
    transform: scale(1.1);
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.9),
                 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* 🔧 强制所有成员名称默认为金色 - 最高优先级 */
p.member-name,
.member-token p,
.member-card p {
    color: #D4AF37 !important;
}

/* 成员游戏名样式（第二行，如"橘風"）- 适中、清晰、不喧宾夺主 */
.member-card .member-token {
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 1.05rem !important;
    color: #D4AF37 !important;
    margin-top: 0.3rem;
    padding: 0;
    min-height: auto;
    max-height: none;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    flex-shrink: 0;
    /* 覆盖全局 .member-token 的卡片样式 - 关键修复 */
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: block !important;
    animation: none !important;
    gap: 0 !important;
    justify-content: initial !important;
    align-items: initial !important;
}

.member-card .member-token:hover {
    color: #FFD700 !important;
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

/* 兼容旧的 .member-token 结构 */
.member-token .member-name {
    color: #D4AF37 !important;
}

.member-token .member-name:hover {
    color: #E6C750 !important;
}

.member-class {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

/* 卷轴展开效果 */
@keyframes scrollUnroll {
    0% {
        transform: scaleY(0);
        opacity: 0;
        transform-origin: top;
    }
    100% {
        transform: scaleY(1);
        opacity: 1;
        transform-origin: top;
    }
}

/* 背景粒子动画 */
@keyframes bambooParticles {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* 帮会攻略板块 */
.guides {
    padding: 5rem 0;
    background: linear-gradient(rgba(47, 79, 79, 0.05), rgba(47, 79, 79, 0.1)), 
                url('../images/yueliang.webp') center/cover fixed;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* 攻略板块粒子背景 */
.guides::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(47, 79, 79, 0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(212, 175, 55, 0.3) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    background-position: 0 0, 30px 30px;
    animation: bambooParticles 4s ease-in-out infinite;
    opacity: 0.2;
    pointer-events: none;
}

.bamboo-scroll {
    background-color: rgba(240, 230, 210, 0.8);
    border: 3px solid var(--gold);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: scrollUnroll 1.5s ease-out forwards;
    transform: scaleY(0);
    opacity: 0;
    will-change: transform, opacity;
}

.bamboo-scroll:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bamboo-scroll::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        rgba(47, 79, 79, 0.1) 20px,
        rgba(47, 79, 79, 0.1) 22px
    );
    opacity: 0.5;
    z-index: 0;
}

.guide-content {
    position: relative;
    z-index: 1;
}

.guide-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(47, 79, 79, 0.3);
}

.guide-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.guide-item h3 {
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.guide-item p {
    font-family: 'STKaiti', 'KaiTi', 'SimKai', 'FangSong', 'STFangsong', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cinnabar-red);
    margin-bottom: 1rem;
    font-weight: bold;
}

.guide-item ul {
    margin-left: 2rem;
    color: var(--ink-black);
    font-weight: bold;
}

.guide-item li {
    font-family: 'STKaiti', 'KaiTi', 'SimKai', 'FangSong', 'STFangsong', serif;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    list-style: none;
    padding-left: 1.5rem;
}

.guide-item li::before {
    content: '';
}

.guide-title {
    color: var(--cinnabar-red);
    font-weight: bold;
    position: relative;
    padding-left: 1rem;
}

.guide-title::before {
    content: '•';
    color: var(--cinnabar-red);
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    font-weight: bold;
}

/* 底部信息 */
.footer {
    background: url('../images/xinchun.png') center 20%/cover no-repeat;
    color: var(--rice-paper);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* 联系我们板块样式 */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0;
    font-size: 1rem;
    color: var(--rice-paper);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.contact-item:hover {
    color: var(--gold);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(10, 10, 10, 0.7));
    z-index: 1;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,.8) 20%, rgba(212,175,55,1) 50%, rgba(212,175,55,.8) 80%, transparent);
    box-shadow: 0 0 8px rgba(212,175,55,.6), 0 0 15px rgba(212,175,55,.3);
    z-index: 3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.footer-section h3 {
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-section p, .footer-section a {
    font-family: 'STKaiti', 'KaiTi', 'SimKai', 'FangSong', 'STFangsong', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

/* 确保copyright部分的备案链接保持金色 */
.copyright a {
    color: #D4AF37 !important;
    font-weight: bold !important;
    text-decoration: underline !important;
}

/* copyright分隔符金色 */
.copyright .sep {
    color: #DAA520 !important;
    text-decoration: none !important;
    font-weight: bold !important;
}

/* 底部实时日历样式 */
.calendar-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    order: 1;
}

.footer-section:not(.calendar-section) {
    order: 2;
}

/* 时钟卡片 - 磨砂玻璃 + 双层金边 */
.calendar-section .clock-card {
    position: relative;
    background: rgba(10, 15, 30, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 1.5rem 1.2rem 1.2rem;
    width: 100%;
    min-width: 200px;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow:
        0 0 24px rgba(212, 175, 55, 0.15),
        inset 0 0 20px rgba(212, 175, 55, 0.05),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

.calendar-section .clock-card::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    pointer-events: none;
}

/* 标题 */
.calendar-section .clock-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.1rem;
    color: rgba(245, 224, 122, 0.85);
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* 时间 - 最突出 */
.calendar-section .clock-time {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 2.4rem;
    font-weight: bold;
    color: #f5e07a;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.7), 0 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 4px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* 日期 */
.calendar-section .clock-date {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1rem;
    color: rgba(212, 175, 55, 0.9);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    margin-bottom: 0.3rem;
}

/* 农历 */
.calendar-section .clock-lunar {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 0.9rem;
    color: rgba(212, 175, 55, 0.65);
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.2);
    margin-bottom: 0.6rem;
}

/* 分隔线 */
.calendar-section .clock-divider {
    width: 60%;
    height: 1px;
    margin: 0.6rem auto;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

/* 问候语 */
.calendar-section .clock-greeting {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1rem;
    color: rgba(245, 224, 122, 0.75);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

/* 祝福语 - 金韵流光 */
.calendar-section .fixed-text {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 1.15rem;
    font-weight: bold;
    letter-spacing: 3px;
    padding: 6px 0 2px;
    background: linear-gradient(90deg, #b8942a, #f5e07a, #d4af37, #f5e07a, #b8942a);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.45)) drop-shadow(0 1px 2px rgba(0,0,0,0.6));
    animation: goldShimmer 5s ease-in-out infinite;
}

@keyframes goldShimmer {
    0% { background-position: 100% 50%; }
    50% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* 联系我们板块图标样式 */
.footer-section p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: bold;
    line-height: 1.6;
}

/* 侠名行强制不换行，保持在一排 */
.footer-section p:has(.user-icon) {
    flex-wrap: nowrap;
    white-space: nowrap;
    min-height: 30px;
}

/* 图标固定宽度，文本左对齐 */
.contact-icon {
    flex-shrink: 0;
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    vertical-align: top;
    margin-top: 2px;
    text-shadow: none;
    transition: all 0.3s ease;
}

/* 明显的气泡样式图标 */
.chat-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    mask-image: none;
    -webkit-mask-image: none;
    background-color: transparent;
    box-shadow: none;
    position: relative;
    vertical-align: middle;
    margin-right: 8px;
}

/* 微信图标 */
.contact-icon.wx-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    vertical-align: middle;
    margin-right: 8px;
    background: #28C445;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(40, 196, 69, 0.7);
}

.contact-icon.wx-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 10px;
    background: white;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

.chat-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 16px;
    background-color: #07C160;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(7, 193, 96, 0.7);
}

.chat-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-50%, -10%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid #07C160;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* 游戏手柄图标 */
.contact-icon.game-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.contact-icon.game-icon:hover {
    transform: scale(1.1) rotate(10deg);
}

.contact-icon.game-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 12px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.8);
}

.contact-icon.game-icon::after {
    content: '🎮';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
    font-size: 0.7rem;
    color: white;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
    z-index: 1;
}

/* 用户图标 */
.contact-icon.user-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.contact-icon.user-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon.user-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 107, 107, 0.8);
}

.contact-icon.user-icon::after {
    content: '🌟';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
    font-size: 0.8rem;
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.contact-icon:hover {
    transform: scale(1.2);
    background-color: rgba(230, 230, 240, 0.9); /* 悬停时更亮的银色白 */
    box-shadow: 0 0 20px rgba(230, 230, 240, 0.9); /* 增强的银色发光效果 */
}

.footer-section a:hover {
    color: var(--cinnabar-red);
    transform: translateX(5px);
}

.seal {
    width: 160px;
    height: 180px;
    margin: 0 auto;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 六边形徽章主体 */
.seal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9E2A2B 0%, #C92A2A 50%, #9E2A2B 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.8),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    z-index: 1;
    transition: all 0.4s ease;
}

/* 徽章内部装饰 */
.seal::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.2) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 2;
    transition: all 0.4s ease;
}

/* 徽章文字内容 */
.seal span {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #F5F5DC;
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    line-height: 1.3;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 剑形装饰 */
.seal span::before {
    content: '⚔️';
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
    transition: all 0.4s ease;
}

/* 帮会名称 */
.seal span::after {
    content: '唯心阁';
    display: block;
    font-size: 2rem;
    transition: all 0.4s ease;
}

/* 水墨扩散效果 */
@keyframes inkSpread {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* 悬停效果 */
.seal:hover {
    transform: translateY(-10px) scale(1.05);
}

/* 悬停时主体效果 */
.seal:hover::before {
    background: linear-gradient(135deg, #C92A2A 0%, #E03131 50%, #C92A2A 100%);
    box-shadow: 
        0 15px 45px rgba(158, 42, 43, 0.9),
        inset 0 0 30px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
}

/* 悬停时装饰效果 */
.seal:hover::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
}

/* 悬停时文字效果 */
.seal:hover span {
    color: #FFFFFF;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 255, 255, 0.5);
}

/* 悬停时剑形效果 */
.seal:hover span::before {
    transform: rotate(360deg) scale(1.2);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* 悬停时名称效果 */
.seal:hover span::after {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* 卡片水墨扩散效果 */
.member-token:hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(158, 42, 43, 0.3), transparent);
    transform: translate(-50%, -50%);
    animation: inkSpread 1s ease-out forwards;
    z-index: 1;
}

/* 移除招募卡片的水墨扩散效果 */
.recruitment-card:hover::after {
    content: none;
}

/* 实时日历样式 */
.calendar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    background: rgba(47, 79, 79, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    border: 2px solid var(--gold); /* 金色边框 */
}

.current-date {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--cinnabar-red); /* 使用醒目的红色 */
    margin-bottom: 0.3rem;
    text-align: center;
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    line-height: 1.3;
    text-shadow: 
        0 0 10px rgba(158, 42, 43, 0.9),
        1px 1px 2px rgba(0, 0, 0, 0.9); /* 增强文字阴影，提高对比度 */
    letter-spacing: 0.5px;
}

.current-time {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold); /* 使用金色 */
    margin-bottom: 0.3rem;
    text-align: center;
    font-family: 'Courier New', monospace;
    text-shadow: 
        0 0 15px rgba(212, 175, 55, 0.9),
        1px 1px 3px rgba(0, 0, 0, 0.9); /* 增强文字阴影，提高对比度 */
    letter-spacing: 1px;
}

.lunar-date {
    font-size: 1rem;
    font-weight: bold;
    color: var(--gold); /* 使用金色 */
    text-align: center;
    font-style: normal;
    line-height: 1.2;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),
        1px 1px 2px rgba(0, 0, 0, 0.9); /* 增强文字阴影，提高对比度 */
    letter-spacing: 0.5px;
}

.copyright {
    text-align: center;
    padding: 1rem;
    color: var(--rice-paper);
    font-size: 0.9rem;
    font-weight: bold;
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    margin: 1rem auto;
    width: calc(100% - 40px);
    max-width: 1200px;
    box-sizing: border-box;
}

/* 版权区分隔符 */
.copyright .sep {
    color: #DAA520;
    margin: 0 4px;
    opacity: 0.85;
    font-weight: normal;
}

/* 底部版权样式 */
.footer .copyright {
    border-top: 1px solid rgba(245, 245, 220, 0.3);
    margin-top: 2rem;
}

/* 武侠风格背景音乐控制 - 全新设计 */
.audio-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: transparent;
    border: 4px solid var(--gold);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.8),
        0 4px 15px rgba(0, 0, 0, 0.5);
}

.audio-control:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 30px rgba(212, 175, 55, 1),
        0 6px 25px rgba(0, 0, 0, 0.7);
    border-color: var(--cinnabar-red);
}

/* 播放按钮样式 - 武侠风格 */
.audio-control::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--gold);
    z-index: 2;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.audio-control:hover::before {
    color: var(--cinnabar-red);
    transform: translate(-50%, -50%) scale(1.2);
    text-shadow: 0 0 25px rgba(158, 42, 43, 0.9);
}

/* 暂停状态 */
.audio-control.paused::before {
    content: '⏸';
    font-size: 20px;
    color: var(--gold);
    left: 50%;
    transform: translate(-50%, -50%);
}

.audio-control.paused:hover::before {
    color: var(--cinnabar-red);
    transform: translate(-50%, -50%) scale(1.2);
    text-shadow: 0 0 25px rgba(158, 42, 43, 0.9);
}

/* 音量滑块 */
.volume-control {
    position: fixed;
    bottom: 120px;
    right: 55px;
    transform: rotate(-90deg);
    z-index: 1000;
    display: none;
    background: rgba(10, 10, 10, 0.8);
    padding: 10px;
    border-radius: 20px;
    border: 2px solid var(--gold);
}

.volume-control.show {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: rotate(-90deg) translateY(20px); }
    to { opacity: 1; transform: rotate(-90deg) translateY(0); }
}

input[type="range"] {
    -webkit-appearance: none;
    width: 120px;
    height: 8px;
    background: linear-gradient(to right, var(--cinnabar-red), var(--gold));
    border-radius: 4px;
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--gold), var(--cinnabar-red));
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(212, 175, 55, 0.6);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(212, 175, 55, 0.8);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    /* 背景图片适配 */
    body {
        background-size: cover;
    }
    
    /* 导航栏背景图片适配 */
    .navbar {
        background-size: cover;
        background-position: center;
    }
    
    /* 底部背景图片适配 */
    .footer {
        background-size: cover;
        background-position: center;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vertical-text {
        writing-mode: horizontal-tb;
        text-orientation: initial;
        letter-spacing: normal;
        border-left: none;
        border-bottom: 3px solid var(--cinnabar-red);
        padding: 0.5rem;
        font-size: 1.5rem;
    }
    
    /* 调整字体大小 */
    body {
        font-size: 1rem;
    }
    
    /* 调整导航栏 */
    .navbar .container {
        padding: 0.3rem 15px !important;
    }
    
    /* 调整横幅文字大小 */
    .banner h1 {
        font-size: 4rem;
    }
    
    .banner p {
        font-size: 1.8rem;
    }
    
    /* 调整招新卡片 */
    .recruitment-card {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    /* 🔧 优化成员网格布局 - 平板端 */
    .members-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .member-card {
        max-width: 260px;
        padding: 1.8rem 1.2rem;
    }
    
    .member-avatar {
        width: 100px;
        height: 100px;
    }
    
    .member-name {
        font-size: 1.4rem;
    }
    
    /* 调整音频控制按钮 */
    .audio-control {
        width: 70px;
        height: 70px;
        bottom: 25px;
        right: 25px;
    }
    
    /* 调整音量控制 */
    .volume-control {
        bottom: 105px;
        right: 50px;
    }
}



@media (max-width: 480px) {
    .banner h1 {
        font-size: 3rem;
    }
    
    .banner p {
        font-size: 1.4rem;
        letter-spacing: 0.08rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .scroll-container {
        padding: 1rem;
    }
    
    .horizontal-text {
        font-size: 1rem;
    }
    
    .recruitment-card {
        padding: 1.5rem;
    }
    
    .recruitment-card h3 {
        font-size: 1.5rem;
    }
    
    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .guide-item h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* 调整音频控制按钮 - 小屏幕移动端 */
    .audio-control {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .audio-control::before {
        font-size: 20px;
    }
    
    .audio-control.paused::before {
        font-size: 16px;
    }
    
    /* 调整音量控制 - 小屏幕移动端 */
    .volume-control {
        bottom: 90px;
        right: 45px;
    }
    
    input[type="range"] {
        width: 100px;
    }
    
    /* 调整音频提示 - 小屏幕移动端 */
    .audio-tip {
        bottom: 75px;
        right: 15px;
        font-size: 12px;
        padding: 8px 16px;
    }
    
    /* 调整加载动画 - 小屏幕移动端 */
    .loading::before {
        font-size: 2.5rem;
        left: 8%;
        letter-spacing: 0.8rem;
    }
    
    .loading::after {
        font-size: 5rem;
    }
    
    /* 调整弹窗 - 小屏幕移动端 */
    .modal-content {
        padding: 1.2rem;
        width: 90%;
    }
    
    .modal-content h3 {
        font-size: 1.3rem;
    }
    
    .modal-content p {
        font-size: 0.9rem;
    }
}

/* 简化版加载效果 */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 使用双人图片作为背景（压缩版 + 深色回退色） */
    background: #0a0a0a url('../images/shuangren3_compressed.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-out 2s forwards;
    overflow: hidden;
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    /* 右下角水印遮罩（加强覆盖） */
    box-shadow: inset -250px -120px 150px -60px rgba(0, 0, 0, 0.95);
}

/* 确保加载动画被隐藏后不占据空间 */
.loading[style*="display: none"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* 加载动画中的版权信息可见 */
.loading > .copyright {
    display: block !important;
}

/* 燕云十六声标志 - 左侧垂直文字 */
.loading::before {
    content: '燕云十六声';
    position: absolute;
    top: 50%;
    left: 15%;
    font-size: 4.5rem;
    color: #C9A96E; /* 古韵淡金 */
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 1.2rem;
    transform: translateY(-50%);
    z-index: 2;
    /* 淡金光晕效果 */
    text-shadow: 0 0 12px rgba(201, 169, 110, 0.45), 0 0 25px rgba(180, 150, 90, 0.25);
    /* 防止文字换行 */
    white-space: nowrap;
    width: fit-content;
    display: block;
}

/* 唯心阁主标题 - 中央文字 */
.loading::after {
    content: '唯心阁';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: #C9A96E; /* 古韵淡金 */
    text-align: center;
    z-index: 3;
    line-height: 1;
    /* 淡金光晕效果 */
    text-shadow: 0 0 18px rgba(201, 169, 110, 0.55), 0 0 35px rgba(180, 150, 90, 0.3);
}

/* 加载动画版权信息 */
.loading .copyright {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 0.5rem 1rem;
    border-top: 1px solid rgba(245, 245, 220, 0.3);
    color: var(--rice-paper);
    font-size: 0.9rem;
    font-weight: bold !important;
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    box-sizing: border-box;
    z-index: 4;
    width: calc(100% - 40px);
    max-width: 1200px;
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
}

/* 弹窗样式 - 默认完全隐藏，不参与渲染 */
.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    opacity: 0;
    pointer-events: none;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, opacity 0.3s ease;
}

.modal.show {
    display: flex;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: linear-gradient(135deg, rgba(245, 245, 220, 0.95), rgba(47, 79, 79, 0.1));
    border: 3px solid var(--gold);
    border-radius: 18px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(212, 175, 55, 0.5);
    position: relative;
    max-width: 500px;
    max-height: 90vh;
    width: auto;
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    direction: ltr !important;
}

/* 媒体查看模态框样式优化 - 更大的显示尺寸 */
#media-modal .modal-content {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    padding: 2rem;
    min-width: 300px;
}

#media-modal #modal-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 300px;
}

#media-modal #modal-media img,
#media-modal #modal-media video {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* 模态框中的媒体样式 */
#modal-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#modal-media img,
#modal-media video {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.modal.show .modal-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.close-modal {
    color: var(--gold);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--cinnabar-red);
    transform: scale(1.2);
}

.modal-content h3 {
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.modal-content p {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: bold;
    text-shadow: 
        0 0 10px rgba(158, 42, 43, 0.8),
        1px 1px 2px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.3);
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
}

/* 弹窗动画已改为使用CSS过渡效果 */



/* 淡出效果 */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* 下滑进入动画 */
@keyframes slideDown {
    from {
        transform: translateX(-50%) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* 🔧 淡入缩放动画 - 用于音乐禁用提示 */
@keyframes fadeInScale {
    0% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}

/* 背景音乐提示样式 */
.audio-tip {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(47, 79, 79, 0.9) 50%, rgba(158, 42, 43, 0.9) 100%);
    color: var(--gold);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Ma Shan Zheng', cursive, 'SimHei', 'STHeiti', sans-serif;
    z-index: 9997;
    box-shadow: 
        0 0 20px rgba(212, 175, 55, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: audioTipAnimation 3s ease-in-out infinite;
    transform-origin: right center;
    white-space: nowrap;
    border: 2px solid rgba(212, 175, 55, 0.6);
    transition: all 0.3s ease;
}

.audio-tip:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 25px rgba(212, 175, 55, 1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes audioTipAnimation {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(10px) scale(0.95);
    }
    20%, 80% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* 提示文字动画 */
.audio-tip span {
    display: inline-block;
    animation: float 2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* 淡入发光动画 */
@keyframes fadeInGlow {
    0% {
        opacity: 0.8;
        filter: brightness(1);
    }
    100% {
        opacity: 1;
        filter: brightness(1.2);
    }
}

/* 渐变移动动画 */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}



/* 超小屏手机 */
@media (max-width: 480px) {
    body { font-size: 15px; }
    .banner-content h1 { font-size: 2rem; }
    .banner-content p { font-size: 1rem; }
    .modal-content {
        width: 95%;
        padding: 15px;
    }
}

/* ========== 统一响应式样式 ========== */
@media (max-width: 768px) {
    /* 字体大小调整 */
    body { font-size: 16px; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    /* 🔧 优化成员网格布局 - 移动端 */
    .members-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* 🏆 颁奖台容器移动端适配 */
    .podium-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        min-height: auto;
        padding: 1rem 0;
    }
    
    /* 主C位移动端 */
    .member-card.podium-first {
        /* order由HTML顺序决定 */
        transform: scale(1.08);
        min-height: 320px;
        max-width: 90%;
        padding: 2rem 1.5rem;
    }
    
    .member-card.podium-first .member-avatar {
        width: 110px;
        height: 110px;
    }
    
    .member-card.podium-first .member-name {
        font-size: 1.6rem !important;
    }
    
    .member-card.podium-first .member-token {
        font-size: 1.1rem !important;
    }
    
    .member-card.podium-first::after {
        font-size: 3.2rem; /* 移动端也相应增大 */
        top: -15px;
    }
    
    /* 副C位移动端 */
    .member-card.podium-second {
        /* order由HTML顺序决定 */
        transform: scale(1.05);
        min-height: 280px;
        max-width: 85%;
        padding: 1.8rem 1.4rem;
    }
    
    .member-card.podium-second .member-avatar {
        width: 100px;
        height: 100px;
    }
    
    .member-card.podium-second .member-name {
        font-size: 1.5rem !important;
    }
    
    .member-card.podium-second .member-token {
        font-size: 1rem !important;
    }
    
    /* 次C位移动端 */
    .member-card.podium-third {
        /* order由HTML顺序决定 */
        transform: scale(1.05);
        min-height: 280px;
        max-width: 85%;
        padding: 1.8rem 1.4rem;
    }
    
    .member-card.podium-third .member-avatar {
        width: 100px;
        height: 100px;
    }
    
    .member-card.podium-third .member-name {
        font-size: 1.5rem !important;
    }
    
    .member-card.podium-third .member-token {
        font-size: 1rem !important;
    }
    
    /* 普通成员网格移动端 */
    .normal-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .member-card.normal-member {
        min-height: 240px;
        max-width: 100%;
        padding: 1.5rem 1rem;
    }
    
    .member-card.normal-member .member-avatar {
        width: 90px;
        height: 90px;
    }
    
    .member-card.normal-member .member-name {
        font-size: 1.3rem !important;
    }
    
    .member-card.normal-member .member-token {
        font-size: 0.95rem !important;
    }
    
    /* 容器内边距 */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* 纵向文本容器修复 */
    .vertical-text-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        border-left: none;
        border-bottom: 3px solid var(--cinnabar-red);
    }
    
    .vertical-text-column {
        writing-mode: horizontal-tb;
        font-size: 1.3rem;
        letter-spacing: normal;
        min-height: auto;
        padding: 0.5rem;
    }
    
    .horizontal-text {
        font-size: 1.2rem;
        line-height: 1.8;
        padding: 0.5rem;
    }
    
    /* 导航栏适配 */
    .navbar { padding: 10px; }
    .nav-menu {
        flex-direction: column;
        width: 100%;
        display: none;
    }
    .nav-menu.active { display: flex; }
    .hamburger { display: block; }
    
    /* 网格布局适配 */
    .grid-3, .grid-4, .members-grid, .recruitment-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    /* 图片自适应 */
    img { max-width: 100%; height: auto; }
    
    /* 表格适配 */
    .admin-table, .media-grid {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    /* 按钮组适配 */
    .media-actions, .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    .media-actions button, .action-btn {
        width: 100%;
        margin: 2px 0;
        padding: 10px;
    }
    
    /* 留言板/纪念墙适配 */
    .media-item {
        width: 100%;
        margin-bottom: 15px;
    }
    .media-preview img, .media-preview video {
        max-height: 200px;
        object-fit: cover;
    }
    
    /* 管理后台侧边栏适配 */
    .admin-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    .admin-content {
        margin-left: 0;
        padding: 10px;
    }
    
    /* 日历组件适配 */
    .calendar-container { font-size: 12px; }
    
    /* 页脚适配 */
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    .footer-section {
        width: 100%;
        padding: 10px;
    }
}

/* 超小屏手机 */
@media (max-width: 480px) {
    body { font-size: 15px; }
    .banner-content h1 { font-size: 2rem; }
    .banner-content p { font-size: 1rem; }
    .modal-content {
        width: 95%;
        padding: 15px;
    }
}

/* ========================================
   🏆 百业战报专属 - "荣耀殿堂"主题
   与首页的"星辰殿堂"风格区分，更加华丽夸张
   ======================================== */

/* 百业战报主C位 - 极致华丽版 */
.baiye-members-section .member-card.podium-first {
    min-height: 480px; /* 比首页更大 */
    max-width: 380px;
    padding: 3.5rem 3rem;
    border: 7px solid #D4AF37;
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.8),
        0 0 70px rgba(255, 215, 0, 1),
        0 0 100px rgba(212, 175, 55, 0.9),
        0 0 140px rgba(255, 215, 0, 0.7),
        inset 0 0 50px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, rgba(255, 250, 220, 1), rgba(255, 245, 200, 0.98));
}

/* 百业战报主C位头像 - 帝王级 */
.baiye-members-section .member-card.podium-first .member-avatar {
    width: 170px;
    height: 170px;
    border: 8px solid #D4AF37;
    box-shadow: 
        0 0 35px rgba(255, 215, 0, 1),
        0 0 60px rgba(212, 175, 55, 0.9),
        inset 0 0 25px rgba(255, 215, 0, 0.4);
}

/* 百业战报主C位称号 - 帝王字体 */
.baiye-members-section .member-card.podium-first .member-name {
    font-size: 2.5rem !important;
    color: #FFD700 !important;
    text-shadow: 
        0 0 18px rgba(255, 215, 0, 1),
        0 0 35px rgba(212, 175, 55, 1),
        0 0 50px rgba(255, 215, 0, 0.8),
        2px 2px 7px rgba(0, 0, 0, 0.9) !important;
    letter-spacing: 0.2em !important;
}

/* 百业战报主C位游戏名 */
.baiye-members-section .member-card.podium-first .member-token {
    font-size: 1.5rem !important;
    color: #D4AF37 !important;
    font-weight: 900 !important;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.9);
}

/* 百业战报主C位皇冠 - 超大号 + 旋转光芒 */
.baiye-members-section .member-card.podium-first::after {
    font-size: 5rem;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 1)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.9));
    top: -35px;
}

/* 百业战报主C位皇冠光芒装饰 - 显示并增强 */
.baiye-members-section .member-card.podium-first .crown-rays {
    display: block;
    width: 140px;
    height: 140px;
    top: -45px;
}

/* 百业战报副C位 - 银月剑影强化版 */
.baiye-members-section .member-card.podium-second {
    min-height: 360px;
    max-width: 320px;
    padding: 2.5rem 2rem;
    border: 5px solid #C0C0C0;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(192, 192, 192, 0.9),
        0 0 80px rgba(70, 130, 180, 0.7),
        inset 0 0 30px rgba(192, 192, 192, 0.4);
    background: linear-gradient(135deg, rgba(230, 240, 255, 1), rgba(176, 224, 230, 0.95));
}

/* 百业战报副C位头像 */
.baiye-members-section .member-card.podium-second .member-avatar {
    width: 130px;
    height: 130px;
    border: 6px solid #C0C0C0;
    box-shadow: 0 0 25px rgba(192, 192, 192, 0.9), 0 0 40px rgba(70, 130, 180, 0.7);
}

/* 百业战报副C位称号 */
.baiye-members-section .member-card.podium-second .member-name {
    font-size: 2rem !important;
    color: #E0F0FF !important;
    text-shadow: 
        0 0 12px rgba(192, 192, 192, 1),
        0 0 25px rgba(70, 130, 180, 0.8),
        2px 2px 5px rgba(0, 0, 0, 0.7) !important;
    letter-spacing: 0.15em !important;
}

/* 百业战报副C位游戏名 */
.baiye-members-section .member-card.podium-second .member-token {
    font-size: 1.2rem !important;
    color: #B0E0E6 !important;
    text-shadow: 0 0 10px rgba(176, 224, 230, 0.7);
}

/* 百业战报副C位四角剑气 - 显示并增强 */
.baiye-members-section .member-card.podium-second::before {
    display: block;
    opacity: 0.8;
}

/* 百业战报副C位月光波纹 - 显示并增强 */
.baiye-members-section .member-card.podium-second::after {
    display: block;
    animation-duration: 2.5s; /* 更快 */
}

/* 百业战报副C位星光 - 显示全部4个 */
.baiye-members-section .member-card.podium-second .orbit-dot:nth-child(3),
.baiye-members-section .member-card.podium-second .orbit-dot:nth-child(4),
.baiye-members-section .member-card.podium-second .orbit-dot:nth-child(5) {
    display: inline-block;
}

/* 百业战报次C位 - 星火流萤强化版 */
.baiye-members-section .member-card.podium-third {
    min-height: 360px;
    max-width: 320px;
    padding: 2.5rem 2rem;
    border: 5px solid #FF8C00;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(255, 140, 0, 0.9),
        0 0 80px rgba(220, 20, 60, 0.7),
        inset 0 0 30px rgba(255, 140, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 245, 230, 1), rgba(255, 220, 180, 0.95));
}

/* 百业战报次C位头像 */
.baiye-members-section .member-card.podium-third .member-avatar {
    width: 130px;
    height: 130px;
    border: 6px solid #FF8C00;
    box-shadow: 0 0 25px rgba(255, 140, 0, 0.9), 0 0 40px rgba(220, 20, 60, 0.7);
}

/* 百业战报次C位称号 */
.baiye-members-section .member-card.podium-third .member-name {
    font-size: 2rem !important;
    color: #FFE4B5 !important;
    text-shadow: 
        0 0 12px rgba(255, 140, 0, 1),
        0 0 25px rgba(220, 20, 60, 0.8),
        2px 2px 5px rgba(0, 0, 0, 0.7) !important;
    letter-spacing: 0.15em !important;
}

/* 百业战报次C位游戏名 */
.baiye-members-section .member-card.podium-third .member-token {
    font-size: 1.2rem !important;
    color: #FFA500 !important;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.7);
}

/* 百业战报次C位粒子 - 显示全部6个 */
.baiye-members-section .member-card.podium-third .particle:nth-child(4),
.baiye-members-section .member-card.podium-third .particle:nth-child(5),
.baiye-members-section .member-card.podium-third .particle:nth-child(6) {
    display: inline-block;
}

/* 百业战报普通成员 - 保留装饰线 */
.baiye-members-section .member-card.normal-member::before,
.baiye-members-section .member-card.normal-member::after {
    display: block;
}
