:root {
    --primary-color: #8B0000; /* 血浆暗红 */
    --secondary-color: #D2B48C; /* 硅胶肤色 */
    --bg-color: #1A1A1A; /* 幕后影棚黑 */
    --card-bg: #2C2C2C; /* 工作台深灰 */
    --text-color: #E8E8E8; /* 石膏白 */
    --font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
}

/* 骨骼肌理风背景效果 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" opacity="0.03"><path d="M10,10 Q50,90 90,10" stroke="white" fill="none"/></svg>');
    pointer-events: none;
    z-index: -1;
}

header {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c63414928 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--secondary-color);
}

.c9b683349 {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.c658b522a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-banner.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.6;
}

.c29af7c67 {
    position: relative;
    z-index: 2;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cea3fb318 {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 3px;
    transition: all 0.3s;
    text-transform: uppercase;
    border: 1px solid #ff3333;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.5);
}

.cea3fb318:hover {
    background-color: #a00000;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(139, 0, 0, 0.8);
}

/* 操作台网格布局 */
.c418a4d57 {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.c2fdb8b80 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.c9dfbee36 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cf8530181 {
    background-color: var(--card-bg);
    border: 1px solid #444;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.cf8530181:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

/* 鼠标悬停显示解剖学骨骼透视线 */
.cf8530181::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><line x1="0" y1="0" x2="100%" y2="100%" stroke="rgba(210,180,140,0.3)" stroke-width="1"/><line x1="100%" y1="0" x2="0" y2="100%" stroke="rgba(210,180,140,0.3)" stroke-width="1"/></svg>');
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.cf8530181:hover::after {
    opacity: 1;
}

.cf8530181 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* 图片加载带喷枪喷涂的雾化效果 */
    filter: contrast(1.1) brightness(0.9);
    transition: filter 0.5s;
}

.cf8530181:hover img {
    filter: contrast(1.2) brightness(1.1);
}

.c5f31019b {
    padding: 1.5rem;
}

.c9f4c3c10 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cf8530181 p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.c74fdb221 {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.c74fdb221:hover {
    border-color: var(--primary-color);
}

/* 伤效/丧尸妆容Before&After对比透视镜 */
.cab65d3a8 {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
}

.cab65d3a8 img {
    width: 100%;
    display: block;
}

.cd19ddc99 {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid var(--secondary-color);
}

.c85842969 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--secondary-color);
    cursor: ew-resize;
    transform: translateX(-50%);
}

.c85842969::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* 交互模拟器容器 */
.c141cd656 {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 5px;
    border: 1px solid #444;
    margin-top: 2rem;
}

.c5c012a9f {
    color: var(--secondary-color);
    margin-top: 0;
}

footer {
    background-color: #111;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid #333;
    margin-top: 4rem;
}

.c21cc066d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cce6b1bd0 h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cce6b1bd0 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cce6b1bd0 li {
    margin-bottom: 0.5rem;
}

.cce6b1bd0 a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.cce6b1bd0 a:hover {
    color: var(--primary-color);
}

.c927ed003 {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* 面包屑导航 */
.c7e4d2cf3 {
    padding: 1rem 2rem;
    background: rgba(26,26,26,0.8);
    border-bottom: 1px solid #333;
}
.c7e4d2cf3 a {
    color: var(--secondary-color);
    text-decoration: none;
}
.c7e4d2cf3 a:hover {
    text-decoration: underline;
}

/* 文章详情页样式 */
.c10be79ba {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}
.c10be79ba h2 {
    color: var(--secondary-color);
    margin-top: 2rem;
}
.c10be79ba img {
    max-width: 100%;
    border: 1px solid #444;
    margin: 1.5rem 0;
}

/* 响应式 */
@media (max-width: 768px) {
    nav ul {
        display: none; /* 移动端应有汉堡菜单，简化处理 */
    }
    h1 {
        font-size: 2rem;
    }
    .c9b683349 {
        height: 60vh;
    }
}
