        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        a {
            text-decoration: none;
            color: white;
        }
        
        body {
            background-image: url('https://cthzs.cn/wp-content/uploads/2025/11/1762009577-bf827fcf-bf1d-4bd7-8fb7-48e12016e54b-scaled.jpg');
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-size: cover;
            font-family: 'Garamond', 'Times New Roman', serif;
            color: #f0e6d2;
            overflow-x: hidden;
        }
        
        @font-face {
        font-family: 'g92_song_style_special';
        /* 使用 woff2 格式的字体文件 */
        src: url('/typeface/g92_song_style_special.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
            font-display: swap;
}
        
        /* 顶部导航栏 */
        .navbar {
            background-color: rgba(30, 20, 40, 0.8);
            border-bottom: 2px solid #d4af37;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            height: 40px;
        }
        
        .logo h1 {
            font-family: g92_song_style_special;
            font-size: 1.5rem;
            color: #d4af37;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        
        .nav-links a {
            color: #f0e6d2;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: #d4af37;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a.active {
            color: #d4af37;
        }
        
        .nav-links a.active::after {
            width: 100%;
        }
        
        /* 主内容区 */
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        
        .category-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .category-header h2 {
            font-family: g92_song_style_special;
            font-size: 2.5rem;
            color: #d4af37;
            text-shadow: 0 0 15px rgba(212, 175, 55, 0.7);
            margin-bottom: 1rem;
        }
        
        .category-header .divider {
            width: 30%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
            margin: 0 auto;
        }
        
        /* 卡组网格 */
        .deck-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .deck-card {
            background-color: rgba(40, 25, 50, 0.85);
            border: 1px solid #d4af37;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .deck-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://picsum.photos/id/307/300/200') center/cover no-repeat;
            opacity: 0.1;
            z-index: -1;
        }
        
        .deck-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            border-color: #fff;
        }
        
        .deck-header {
            background-color: rgba(212, 175, 55, 0.2);
            padding: 1rem;
            text-align: center;
            border-bottom: 1px solid #d4af37;
        }
        
        .deck-header h3 {
            color: #d4af37;
            margin-bottom: 0.5rem;
        }
        
        .deck-type {
            display: inline-block;
            background-color: rgba(212, 175, 55, 0.3);
            color: #f0e6d2;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .deck-cards {
            padding: 1rem;
        }
        
        .core-cards {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .card-img {
            width: 60px;
            height: 80px;
            border-radius: 4px;
            border: 1px solid #d4af3700;
            transition: transform 0.3s ease;
            object-fit: cover;
        }
        
        .card-img:hover {
            transform: scale(1.1);
        }
        
        .deck-info {
            padding: 0 1rem 1rem;
            text-align: center;
        }
        
        .deck-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        
        .view-btn {
            background-color: #d4af37;
            color: #22142b;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 4px;
            font-family: 'Garamond', serif;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .view-btn:hover {
            background-color: #fff;
            transform: scale(1.05);
        }
        
        /* 光标特效 */
        #cursor {
            position: fixed;
            width: 16px;
            height: 16px;
            background: #ffffff;
            border-radius: 8px;
            opacity: 0.25;
            z-index: 10086;
            pointer-events: none;
            transition: 0.2s ease-in-out;
            transition-property: background, opacity, transform;
            box-shadow: 0 0 10px 5px rgba(212, 175, 55, 0.8);
        }

        #cursor::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: #d4af37;
            border-radius: 50%;
            opacity: 0.4;
            z-index: -1;
        }

        #cursor.hidden {
            opacity: 0;
        }

        #cursor.hover {
            opacity: 0.3;
            transform: scale(2.5);
        }

        #cursor.active {
            opacity: 0.5;
            transform: scale(0.5);
        }
        
        /* 卡组详情弹窗 */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }
        
        .modal.active {
            display: flex;
        }
        
        .modal-content {
            background-color: rgba(40, 25, 50, 0.95);
            border: 2px solid #d4af37;
            border-radius: 12px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: modalFadeIn 0.5s;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            color: #d4af37;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 10;
        }
        
        .close-btn:hover {
            color: #fff;
        }
        
        .modal-header {
            background-color: rgba(212, 175, 55, 0.2);
            padding: 1.5rem;
            text-align: center;
            border-bottom: 1px solid #d4af37;
        }
        
        .modal-header h2 {
            color: #d4af37;
            margin-bottom: 0.5rem;
        }
        
        .modal-body {
            padding: 2rem;
        }
        
        .deck-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        /* 完整卡组容器：添加相对定位，用于回响背景图定位 */
        .full-deck {
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            padding: 1rem;
            position: relative; /* 关键：为内部绝对定位元素提供基准 */
            min-height: 400px; /* 确保背景图有足够显示空间 */
        }
        
        /* 回响背景图样式：优化显示效果，保留原色彩 */
        .echo-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70%;
            height: 70%;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.4; /* 提高透明度，更清晰可见 */
            z-index: 1; /* 低于卡牌网格的z-index，确保在底层 */
            filter: saturate(1.2); /* 增强饱和度，保留原本颜色 */
            mix-blend-mode: screen; /* 混合模式，让颜色更突出 */
        }
        
        .full-deck h3 {
            color: #d4af37;
            margin-bottom: 1rem;
            text-align: center;
            position: relative;
            z-index: 3; /* 确保标题在最上层 */
        }
        
        /* 卡牌网格：提高z-index，确保在回响背景上方 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            position: relative;
            z-index: 2; /* 高于回响背景的z-index */
        }
        
        .card-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .card-item img {
            width: 70px;
            height: 90px;
            border-radius: 4px;
            border: 1px solid #d4af3700;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); /* 增加卡牌阴影，增强层次感 */
        }
        
        .card-item span {
            font-size: 0.8rem;
            text-align: center;
        }
        
        .deck-strategy {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .strategy-section h3 {
            color: #d4af37;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .strategy-section p {
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .back-link {
            display: inline-block;
            margin-top: 1rem;
            color: #d4af37;
            text-decoration: underline;
            transition: color 0.3s ease;
        }
        
        .back-link:hover {
            color: #fff;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .deck-grid {
                grid-template-columns: 1fr;
            }
            
            .deck-details {
                grid-template-columns: 1fr;
            }
            
            .card-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            /* 响应式调整回响背景图大小 */
            .echo-bg {
                width: 80%;
                height: 60%;
                opacity: 0.35;
            }
        }