/* ============================================
   BYD212 - 赛博朋克风格样式表
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap');

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 赛博朋克配色 */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --neon-cyan: #00ffff;
    --neon-green: #39ff14;
    --neon-pink: #ff00ff;
    --neon-blue: #0080ff;
    --neon-yellow: #ffff00;
    --neon-red: #ff0040;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(10, 10, 15, 0.7);
    --glass-border: rgba(0, 255, 255, 0.3);
}

body {
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    background: var(--bg-darker);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* 代码雨背景 - 增强可见性 */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    filter: blur(0px);
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* ============================================
   1. 顶部标题 - 故障风动画
   ============================================ */
header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    position: relative;
}

.glitch-container {
    position: relative;
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 4em;
    font-weight: 900;
    background: linear-gradient(135deg, #0080ff 0%, #764ba2 50%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    animation: glitch 2s infinite;
    text-shadow: 
        0 0 10px rgba(0, 128, 255, 0.5),
        0 0 20px rgba(118, 75, 162, 0.5),
        0 0 30px rgba(255, 0, 255, 0.5);
    filter: drop-shadow(0 0 10px rgba(0, 128, 255, 0.8));
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-green);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 1s infinite linear alternate-reverse;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(54px, 9999px, 66px, 0); }
    40% { clip: rect(28px, 9999px, 99px, 0); }
    60% { clip: rect(83px, 9999px, 29px, 0); }
    80% { clip: rect(23px, 9999px, 85px, 0); }
    100% { clip: rect(42px, 9999px, 78px, 0); }
}

.subtitle {
    font-size: 1.2em;
    color: var(--neon-green);
    margin-top: 15px;
    font-family: 'Share Tech Mono', monospace;
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid var(--neon-green);
    white-space: nowrap;
    animation: typing 3s steps(20, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--neon-green); }
}

.system-status {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    color: var(--neon-green);
    font-size: 0.9em;
    letter-spacing: 0.1em;
}

/* 权限标识 */
.access-level {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85em;
    padding: 8px 15px;
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.access-label {
    color: var(--text-secondary);
    opacity: 0.7;
}

.access-value {
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.access-guest {
    color: var(--text-secondary);
    text-shadow: 0 0 5px rgba(160, 160, 160, 0.5);
}

.access-operator {
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 128, 255, 0.8);
    animation: pulse 2s infinite;
}

.access-root {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
    animation: pulse 2s infinite;
}

/* ============================================
   卡片通用样式 - 毛玻璃效果
   ============================================ */
.card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.1),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.9em;
    font-style: italic;
}

/* ============================================
   2. 通缉名单 - 6个颜色各异的卡片
   ============================================ */
.wanted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.wanted-six {
    grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 1400px) {
    .wanted-six {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .wanted-six {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .wanted-six {
        grid-template-columns: 1fr;
    }
}

.wanted-card {
    background: var(--glass-bg);
    border: 2px solid var(--neon-pink);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wanted-card:hover .delete-btn {
    opacity: 1;
}

/* 确保删除按钮可以点击，即使透明度较低 */
.delete-btn {
    pointer-events: auto !important;
}

/* 6个卡片颜色各异 */
.wanted-card:nth-child(1) {
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.wanted-card:nth-child(2) {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.wanted-card:nth-child(3) {
    border-color: #39ff14;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.wanted-card:nth-child(4) {
    border-color: #ffff00;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
}

.wanted-card:nth-child(5) {
    border-color: #0080ff;
    box-shadow: 0 0 15px rgba(0, 128, 255, 0.3);
}

.wanted-card:nth-child(6) {
    border-color: #ff0040;
    box-shadow: 0 0 15px rgba(255, 0, 64, 0.3);
}

.wanted-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px currentColor;
}

.wanted-card::before {
    content: "WANTED";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    padding: 0 10px;
    color: var(--neon-pink);
    font-size: 0.7em;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.wanted-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--neon-pink);
    margin: 20px auto 10px;
    object-fit: cover;
    box-shadow: 0 0 15px var(--neon-pink);
}

.wanted-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1em;
    margin: 10px 0 5px;
    font-weight: bold;
}

/* 为每个卡片的名称添加对应的发光效果 */
.wanted-card:nth-child(1) .wanted-name {
    text-shadow: 0 0 10px #ff00ff, 0 0 20px rgba(255, 0, 255, 0.5);
}

.wanted-card:nth-child(2) .wanted-name {
    text-shadow: 0 0 10px #00ffff, 0 0 20px rgba(0, 255, 255, 0.5);
}

.wanted-card:nth-child(3) .wanted-name {
    text-shadow: 0 0 10px #39ff14, 0 0 20px rgba(57, 255, 20, 0.5);
}

.wanted-card:nth-child(4) .wanted-name {
    text-shadow: 0 0 10px #ffff00, 0 0 20px rgba(255, 255, 0, 0.5);
}

.wanted-card:nth-child(5) .wanted-name {
    text-shadow: 0 0 10px #0080ff, 0 0 20px rgba(0, 128, 255, 0.5);
}

.wanted-card:nth-child(6) .wanted-name {
    text-shadow: 0 0 10px #ff0040, 0 0 20px rgba(255, 0, 64, 0.5);
}

.wanted-crime {
    font-size: 0.85em;
    font-style: italic;
    line-height: 1.4;
    margin-top: 5px;
    opacity: 0.8;
}

/* 为每个卡片的描述添加对应的颜色和发光效果 */
.wanted-card:nth-child(1) .wanted-crime {
    color: #ff66ff;
    text-shadow: 0 0 5px rgba(255, 102, 255, 0.5);
}

.wanted-card:nth-child(2) .wanted-crime {
    color: #66ffff;
    text-shadow: 0 0 5px rgba(102, 255, 255, 0.5);
}

.wanted-card:nth-child(3) .wanted-crime {
    color: #66ff66;
    text-shadow: 0 0 5px rgba(102, 255, 102, 0.5);
}

.wanted-card:nth-child(4) .wanted-crime {
    color: #ffff66;
    text-shadow: 0 0 5px rgba(255, 255, 102, 0.5);
}

.wanted-card:nth-child(5) .wanted-crime {
    color: #66aaff;
    text-shadow: 0 0 5px rgba(102, 170, 255, 0.5);
}

.wanted-card:nth-child(6) .wanted-crime {
    color: #ff6680;
    text-shadow: 0 0 5px rgba(255, 102, 128, 0.5);
}

/* ============================================
   左右分栏布局
   ============================================ */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
    margin-bottom: 25px;
}

@media (max-width: 968px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   3. 审判日倒计时 - 紧凑、红色、闪烁
   ============================================ */
.countdown-compact {
    min-width: 0;
}

.countdown-title {
    color: var(--neon-red) !important;
    animation: blink-red 1.5s infinite;
}

@keyframes blink-red {
    0%, 100% { 
        opacity: 1;
        text-shadow: 0 0 10px var(--neon-red), 0 0 20px var(--neon-red);
    }
    50% { 
        opacity: 0.7;
        text-shadow: 0 0 5px var(--neon-red), 0 0 10px var(--neon-red);
    }
}

.countdown-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.countdown-item {
    background: var(--glass-bg);
    border: 2px solid var(--neon-red);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;
    animation: pulse-red 2s infinite;
    cursor: pointer;
}

.countdown-item:hover .delete-btn {
    opacity: 1;
}

@keyframes pulse-red {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 0, 64, 0.5);
        border-color: var(--neon-red);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 0, 64, 0.8);
        border-color: #ff3366;
    }
}

.countdown-label {
    color: var(--neon-yellow);
    font-size: 0.9em;
    margin-bottom: 10px;
    font-weight: bold;
}

.countdown-display {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    color: var(--neon-red);
    text-shadow: 0 0 15px var(--neon-red);
    margin: 10px 0;
    letter-spacing: 0.1em;
    animation: blink-countdown 1s infinite;
}

@keyframes blink-countdown {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.countdown-date {
    color: var(--text-secondary);
    font-size: 0.8em;
    margin-top: 8px;
}

.btn-countdown {
    border-color: var(--neon-red);
    color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 0, 64, 0.3);
}

.btn-countdown:hover {
    background: rgba(255, 0, 64, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.6);
}

/* ============================================
   4. 黑历史档案馆 - 更大的相册
   ============================================ */
.archive-large {
    min-width: 0;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.archive-item {
    background: var(--glass-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.archive-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
}

.archive-item:hover .delete-btn {
    opacity: 1;
}

.archive-item::before {
    content: "CLASSIFIED";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    color: var(--neon-blue);
    font-size: 0.7em;
    opacity: 0.3;
    font-weight: bold;
    letter-spacing: 0.2em;
}

.archive-thumbnail {
    width: 100%;
    height: 160px;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.archive-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
}

.archive-item:hover .archive-media {
    transform: scale(1.05);
}

/* 视频播放器样式 */
.archive-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--bg-darker);
}

.archive-media video:hover {
    object-fit: contain;
}

.archive-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.archive-item:hover .archive-placeholder {
    opacity: 1;
}

.archive-title {
    color: var(--neon-cyan);
    font-size: 0.85em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ============================================
   5. 精神污染区 - 终端窗口
   ============================================ */
.terminal-window {
    background: var(--bg-darker);
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.terminal-header {
    background: var(--bg-dark);
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--neon-green);
}

.terminal-title {
    color: var(--neon-green);
    font-weight: bold;
    font-size: 0.9em;
}

.terminal-status {
    color: var(--neon-green);
    font-size: 0.8em;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.terminal-body {
    padding: 15px;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9em;
    line-height: 1.6;
    /* 自定义滚动条 */
    scrollbar-width: thin;
    scrollbar-color: var(--neon-green) var(--bg-darker);
}

.terminal-body::-webkit-scrollbar {
    width: 6px;
}

.terminal-body::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
}

.terminal-body::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.terminal-line {
    margin-bottom: 8px;
    word-wrap: break-word;
}

.terminal-prompt {
    color: var(--neon-green);
    margin-right: 8px;
}

.terminal-username {
    color: var(--neon-cyan);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    animation: username-glow 2s ease-in-out infinite;
}

@keyframes username-glow {
    0%, 100% {
        text-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    }
    50% {
        text-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-cyan), 0 0 40px var(--neon-cyan);
    }
}

.terminal-text {
    color: var(--text-primary);
}

.terminal-cursor {
    color: var(--neon-green);
    animation: blink-cursor 1.06s infinite;
    margin-left: 2px;
}

@keyframes blink-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.input-cursor {
    color: var(--neon-green);
    margin-left: 2px;
    animation: blink-cursor 1.06s infinite;
    pointer-events: none;
}

/* 右键菜单 */
.context-menu {
    position: fixed;
    background: var(--bg-dark);
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    padding: 5px 0;
    z-index: 10000;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
    min-width: 120px;
}

.context-menu-item {
    padding: 8px 15px;
    color: var(--neon-green);
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9em;
    transition: all 0.2s;
}

.context-menu-item:hover {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-cyan);
}

.terminal-input-group {
    display: flex;
    gap: 10px;
}

.terminal-input {
    flex: 1;
    background: var(--bg-dark);
    border: 2px solid var(--neon-green);
    border-radius: 5px;
    padding: 10px 15px;
    color: var(--neon-green);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9em;
    outline: none;
    transition: all 0.3s;
}

.terminal-input:focus {
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
    border-color: var(--neon-cyan);
}

.terminal-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* ============================================
   6. 成就系统 - 边框颜色各不相同
   ============================================ */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 968px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

.achievement-item {
    background: var(--glass-bg);
    border: 2px solid var(--neon-yellow);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

/* 四个成就卡片边框颜色各不相同 */
.achievement-item:nth-child(1) {
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.achievement-item:nth-child(2) {
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.achievement-item:nth-child(3) {
    border-color: #39ff14;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.achievement-item:nth-child(4) {
    border-color: #ffff00;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
}

.achievement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px currentColor;
}

.achievement-name {
    color: var(--text-primary);
    font-size: 1em;
    margin-bottom: 10px;
    font-weight: bold;
}

.achievement-item:nth-child(1) .achievement-name {
    color: #ff00ff;
}

.achievement-item:nth-child(2) .achievement-name {
    color: #00ffff;
}

.achievement-item:nth-child(3) .achievement-name {
    color: #39ff14;
}

.achievement-item:nth-child(4) .achievement-name {
    color: #ffff00;
}

/* 进度条容器 */
.achievement-progress-container {
    position: relative;
    width: 100%;
    height: 30px;
    background: var(--bg-darker);
    border: 2px solid var(--glass-border);
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0;
}

/* 进度条 */
.achievement-progress-bar {
    height: 100%;
    background: var(--neon-cyan);
    transition: width 0.5s ease;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.achievement-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: progress-shine 2s infinite;
}

@keyframes progress-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* 进度文字 */
.achievement-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9em;
    font-weight: bold;
    text-shadow: 0 0 5px currentColor;
    z-index: 1;
    pointer-events: none;
}

.achievement-value-animate {
    animation: achievement-pulse 0.3s ease;
}

@keyframes achievement-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.achievement-controls {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 10px;
}

.achievement-btn {
    background: var(--bg-dark);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8em;
    transition: all 0.3s;
}

.achievement-btn:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 10px var(--neon-cyan);
    transform: scale(1.1);
}

.achievement-btn:active {
    transform: scale(0.95);
}

/* 成就完成标记 */
.achievement-completed {
    border-color: var(--neon-green) !important;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5) !important;
    position: relative;
}

.achievement-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: var(--neon-green);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
    animation: achievement-badge-pulse 2s infinite;
}

@keyframes achievement-badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(57, 255, 20, 0.8); }
    50% { transform: scale(1.1); box-shadow: 0 0 15px rgba(57, 255, 20, 1); }
}

/* 添加成就按钮 */
.achievement-add {
    border: 2px dashed var(--neon-cyan) !important;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s;
}

.achievement-add:hover {
    border-color: var(--neon-green) !important;
    background: rgba(57, 255, 20, 0.05);
    transform: scale(1.05);
}

.achievement-add-icon {
    font-size: 3em;
    color: var(--neon-cyan);
    margin-bottom: 10px;
}

.achievement-add-text {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.achievement-add:hover .achievement-add-icon {
    color: var(--neon-green);
    transform: rotate(90deg);
    transition: all 0.3s;
}

/* 删除自定义成就按钮 */
.achievement-delete-btn {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(255, 0, 64, 0.8);
    border: 1px solid var(--neon-red);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    z-index: 10;
}

.achievement-item:hover .achievement-delete-btn {
    opacity: 1;
}

.achievement-delete-btn:hover {
    background: var(--neon-red);
    transform: scale(1.1);
}

.season-reset {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.reset-hint {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85em;
    margin-top: 8px;
}

.achievement-filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.achievement-filter-buttons .btn-neon.btn-danger.active {
    background: rgba(255, 0, 255, 0.2);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.8);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
    transform: translateY(-2px);
}

/* ============================================
   按钮样式 - 霓虹效果
   ============================================ */
.btn-neon {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 12px 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 5px var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

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

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-neon:active {
    transform: translateY(0);
}

.btn-save {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.btn-save:hover {
    background: rgba(57, 255, 20, 0.1);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.6);
}

.btn-load {
    border-color: var(--neon-blue);
    color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.3);
}

.btn-load:hover {
    background: rgba(0, 128, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 128, 255, 0.6);
}

.btn-danger {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.btn-danger:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

.btn-auth {
    border-color: var(--neon-yellow);
    color: var(--neon-yellow);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
}

.btn-auth:hover {
    background: rgba(255, 255, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.6);
}

/* 禁用按钮样式 */
.btn-neon.disabled,
.btn-neon:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    border-color: var(--text-secondary);
    color: var(--text-secondary);
    box-shadow: none;
}

.btn-neon.disabled:hover,
.btn-neon:disabled:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
}

.save-controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 15px;
}

.save-status {
    padding: 12px 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: none;
    margin-top: 10px;
    font-family: 'Share Tech Mono', monospace;
}

.save-status.success {
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.save-status.error {
    background: rgba(255, 0, 64, 0.1);
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.save-status.info {
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* ============================================
   身份验证终端界面
   ============================================ */
.auth-terminal {
    background: var(--bg-darker);
    border: 2px solid var(--neon-cyan);
    border-radius: 5px;
    padding: 20px;
    font-family: 'Share Tech Mono', monospace;
    margin-bottom: 20px;
}

.auth-terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--neon-cyan);
    margin-bottom: 15px;
}

.auth-terminal-title {
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 0.9em;
    letter-spacing: 0.1em;
}

.auth-terminal-status {
    color: var(--neon-yellow);
    font-size: 0.8em;
    animation: blink 1s infinite;
}

.auth-terminal-body {
    min-height: 150px;
}

.auth-terminal-line {
    margin: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.auth-terminal-prompt {
    color: var(--neon-green);
    font-weight: bold;
    white-space: nowrap;
}

.auth-terminal-text {
    color: var(--text-primary);
}

.auth-terminal-input-line {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-terminal-input {
    flex: 1;
    background: var(--bg-dark);
    border: 2px solid var(--neon-cyan);
    border-radius: 3px;
    padding: 8px 12px;
    color: var(--neon-cyan);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9em;
    outline: none;
    transition: all 0.3s;
}

.auth-terminal-input:focus {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    border-color: var(--neon-green);
}

.auth-terminal-result {
    margin-top: 15px;
}

.auth-terminal-line.auth-success .auth-terminal-text {
    color: var(--neon-green);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
    animation: pulse 1s;
}

.auth-terminal-line.auth-failed .auth-terminal-text {
    color: var(--neon-red);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 64, 0.8);
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ============================================
   7. 页脚 - 系统信息
   ============================================ */
footer.system-info {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 30px;
}

.footer-line {
    margin: 8px 0;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85em;
    color: var(--text-secondary);
}

.code-text {
    color: var(--text-secondary);
}

.status-online {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
    animation: blink 2s infinite;
}

/* ============================================
   模态框
   ============================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-dark);
    border: 2px solid var(--neon-cyan);
    border-radius: 10px;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    text-align: left;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content video {
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--neon-cyan);
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close:hover {
    color: var(--neon-pink);
    transform: rotate(90deg);
}

/* 点击模态框外部关闭 */
.modal {
    cursor: pointer;
}

.modal-content {
    cursor: default;
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: var(--neon-cyan);
    margin-bottom: 8px;
    font-size: 0.9em;
    font-weight: bold;
}

.form-input {
    width: 100%;
    background: var(--bg-darker);
    border: 2px solid var(--neon-cyan);
    border-radius: 5px;
    padding: 10px;
    color: var(--text-primary);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9em;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    border-color: var(--neon-green);
}

/* ============================================
   通缉名单模块弹窗样式 - 洋红色/紫色/亮青色
   ============================================ */
.wanted-label {
    color: #ff00ff !important;
}

.wanted-input {
    border-color: #ff00ff !important;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3) !important;
}

.wanted-input:focus {
    border-color: #00ffff !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5) !important;
}

.wanted-submit {
    border-color: #ff00ff !important;
    color: #ff00ff !important;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3) !important;
}

.wanted-submit:hover {
    background: rgba(255, 0, 255, 0.1) !important;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6) !important;
}

/* ============================================
   审判日模块弹窗样式 - 红色/亮青色
   ============================================ */
.countdown-label {
    color: #ff0040 !important;
}

.countdown-input {
    border-color: #ff0040 !important;
    box-shadow: 0 0 10px rgba(255, 0, 64, 0.3) !important;
}

.countdown-input:focus {
    border-color: #00ffff !important;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5) !important;
}

.countdown-submit {
    border-color: #ff0040 !important;
    color: #ff0040 !important;
    box-shadow: 0 0 10px rgba(255, 0, 64, 0.3) !important;
}

.countdown-submit:hover {
    background: rgba(255, 0, 64, 0.1) !important;
    box-shadow: 0 0 20px rgba(255, 0, 64, 0.6) !important;
}

/* 文件输入框样式 */
input[type="file"] {
    cursor: pointer;
}

input[type="file"]::-webkit-file-upload-button {
    background: var(--bg-dark);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9em;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s;
}

input[type="file"]::-webkit-file-upload-button:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Firefox 文件输入框样式 */
input[type="file"]::file-selector-button {
    background: var(--bg-dark);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 8px 15px;
    border-radius: 5px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9em;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s;
}

input[type="file"]::file-selector-button:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 1400px) {
    .wanted-six {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 2.5em;
    }
    
    .wanted-six {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .archive-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .save-controls {
        flex-direction: column;
    }
    
    .btn-neon {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wanted-six {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   删除按钮样式
   ============================================ */
.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 64, 0.8);
    border: 2px solid var(--neon-red);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 64, 0.5);
    font-family: 'Share Tech Mono', monospace;
}

.delete-btn:hover {
    background: var(--neon-red);
    box-shadow: 0 0 15px rgba(255, 0, 64, 0.8);
    transform: scale(1.1);
    opacity: 1 !important;
}

.delete-btn:active {
    transform: scale(0.95);
}

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

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
}
