/* ==========================================================================
   Drinky Ciggy Club - 核心样式
   ========================================================================== */

:root {
    --dark-red: #8B0000;
    --smoky-gray: #3a3a3a;
    --dim-gold: #b42222;
    --paper-color: #f3e9d2;
    --background-color: #1a1a1a;
}

body {
    background-color: var(--background-color);
    margin: 0;
    font-family: 'Bodoni Moda', serif;
    color: var(--paper-color);
    overflow: hidden;
    cursor: none; /* 隐藏默认光标，使用自定义光标 */
}
canvas {
    display: block;
  }
/* --- 自定义光标 --- */
#cursor {
    position: fixed;
    width: 40px;   /* 光标宽度 */
    height: 40px;  /* 光标高度 */
    pointer-events: none; /* 不阻挡鼠标事件 */
    background-image: url('../images/cursor.png'); /* 替换成你的图片路径 */
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%); /* 光标中心对齐鼠标 */
    z-index: 9999;
}
body.clicking #cursor {
    transform: translate(-50%, -50%) scale(0.9); /* 可以缩小一点模拟按下 */
}

#bgmBtn{
    right: 0%;
    bottom: 0%;
    background: url('../images/bgm.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 10%;
    height: 20%;
    border:none;
    position: absolute;
    cursor:none;
}

#bgmBtn:hover{
    transform: scale(1.1);
    transition: transform 0.5s ease;
    filter:brightness(0.8);
    border:none;
}

/* --- 入口场景 --- */
#entry-scene {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: fixed;
    background-color: black;
    opacity: 1;
    transition: opacity 1.5s ease-out;
    z-index: 1000;
}

#entry-scene.hidden {
    opacity: 0;
    pointer-events: none;
}

#entry-sign {
    cursor: none;
    font-family: 'Special Elite', cursive;
    font-size: 6rem;
    color: var(--dark-red);
    text-align: center;
    line-height: 1.1;
    cursor: pointer;
    /* text-shadow: 0 0 5px var(--dark-red), 0 0 15px var(--dark-red), 0 0 30px #ff0000; */
    filter: drop-shadow(0 0 5px rgb(117, 69, 69)) drop-shadow(0 0 10px #9f9a9a) drop-shadow(0 0 20px #4e4d4b);
    animation: flicker 3s infinite alternate;
}
#entry-sign:hover {
    transform: skewX(15deg) scale(1.1); /* 水平倾斜 */
    transition: transform 0.5s ease;
    filter: drop-shadow(0 0 10px rgb(189, 144, 144)) drop-shadow(0 0 15px #9f9a9a) drop-shadow(0 0 25px #a1a09e);
}

#starfield {
    position: absolute; /* 脱离文档流，不占位 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;         /* 放在最底层 */
}
#entry-sign,
#entry-scene h1 {
    position: relative; /* 相对定位，使 z-index 生效 */
    z-index: 1;         /* 比 Canvas 高 */
}


@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 0 0 5px var(--dark-red), 0 0 10px var(--dark-red), 0 0 20px #ff0000, 0 0 30px #ff0000;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* --- 主内容区 --- */
main#main-content {
    background-size: cover;        /* 关键：铺满屏幕 */
    background-position: center;   /* 居中显示 */
    background-repeat: no-repeat;  /* 不平铺 */
    background-image: url('../images/bg0.png');
    height: 100vh;
    box-sizing: border-box;
    display: flex; /* [新增] 使用 Flexbox 进行垂直布局 */
    flex-direction: column; /* [新增] 子元素垂直排列 */
    opacity: 0; /* 初始隐藏 */
    transition: opacity 1s ease-in;
}

main#main-content.visible {
    opacity: 1;
}

/* 
  [中文注释]
  主场景的背景。
  目前使用一个临时的渐变背景来模拟氛围。
  未来有了俱乐部内景插画后，替换这里的 background-image 即可。
*/
#main-content {
    background-image: radial-gradient(circle at top, #4a2a2a 0%, #1a1a1a 70%);
    height: 100vh;
    box-sizing: border-box;
}

/* --- 顶部招牌 --- */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* [修改] 改为相对定位，融入文档流 */
    padding: 15px 50px;
    z-index: 10;
    text-align: center;
    border-bottom: 2px solid var(--dark-red); /* [新增] 构成红框的上边 */
    border-image: linear-gradient(to right, rgb(93, 0, 0), rgb(212, 23, 23), rgb(255, 125, 125), rgb(197, 43, 43), rgb(79, 0, 0)) 1;
    flex-shrink: 0; /* [新增] 防止页头在 flex 布局中被压缩 */
}

header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.3); /* 半透明黑色 */
    z-index: -1; /* 放在 header 内容的下方 */
}
/* 
  [中文注释]
  当Logo从文字替换为图片后，图片本身没有颜色，
  所以我们用 filter: drop-shadow 来为图片添加霓虹辉光。
  您可以根据需要，调整 drop-shadow 的颜色和模糊半径。
*/
.logo-full {
    font-family: 'Special Elite', cursive;
    font-size: 2.8rem;
}
.logo-full img { /* 图片Logo的样式 */
    max-height: 60px; /* 限制图片最大高度，避免过大 */
    vertical-align: middle; /* 优化图片对齐 */
    filter: drop-shadow(0 0 5px #fff) 
            drop-shadow(0 0 10px var(--dark-red)) 
            drop-shadow(0 0 20px #ff0000);
}

/* --- 霓虹文字效果 (强化版) --- */
.neon-text {
    /* 1. 使用纯白作为灯芯，达到最高亮度 */
    color: #fff; 
    
    /* 2. 使用七层叠加，创造更强辉光 */
    text-shadow: 
        /* 核心白光 */
        0 0 5px #fff,
        0 0 10px #fff,
        /* 主体红光 (多层次) */
        0 0 20px var(--dark-red),
        0 0 35px var(--dark-red),
        /* 氛围红光 (大范围) */
        0 0 40px #ff0000,
        0 0 50px #ff0000,
        0 0 75px #ff0000;
    transition: all 0.3s ease;
}

.neon-text:hover {
    /* 悬停/激活时，辉光范围更大更亮 */
    text-shadow: 
        0 0 10px #fff,
        0 0 20px #fff,
        0 0 30px var(--dark-red),
        0 0 45px var(--dark-red),
        0 0 55px #ff0000,
        0 0 70px #ff0000,
        0 0 80px #ff0000;
}


/* [重构] 核心交互舞台与物件 */
#scene-stage {
    flex-grow: 1; /* [新增] 占据所有剩余的垂直空间 */
    position: relative; /* [新增] 作为内部绝对定位元素的容器 */
    overflow: hidden; /* [新增] 隐藏所有超出此区域的内容和动画 */
}

#interactive-objects-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1); /* [新增] 定义滑出动画 */
    transform: translateX(0);
}

/* [修改] 将 .hidden 重命名为更具体的 .exit-left */
#interactive-objects-container.exit-left {
    transform: translateX(-100%); /* 滑出到左侧 */
}

/* [新增] 定义向右滑出的状态 */
#interactive-objects-container.exit-right {
    transform: translateX(100%); /* 滑出到右侧 */
}

/* --- 可交互物件 --- */
.interactive-object {
    position: absolute; /* 使用绝对定位，之后可以随意摆放位置 */
    cursor: pointer;
    /* [移除] 通用的临时边框和内边距，将具体样式下放到每个物件的ID选择器中 */
    transition: all 0.3s ease;
}
.interactive-object:hover {
    /* [修改] 通用悬停效果只保留 transform，具体的视觉变化由各物件自行定义 */
    transform: translateY(-5px) scale(1.03);
}
.interactive-object .label {
    font-family: 'Special Elite', cursive;
    font-size: 1.5rem;
    color: var(--dim-gold);
    text-shadow: 0 0 5px #000;
}

/* 
  [中文注释]
  为每个物件设定初始位置。
  这里的 top, left, right, bottom 值，
  未来需要根据背景插画中物件的实际位置来精确调整。
*/

/* --- [实体化 V1.0] 宣言画框 --- */
#io-manifesto {
    top: 15%;
    left: 0%;
    width: 25%; /* 定义画框尺寸 */
    height: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../images/building1.png') no-repeat center center;
    background-size: contain;   /* 让整个图片都显示 */
    background-repeat: no-repeat;
    background-position: center;
}
#io-manifesto:hover {
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.7))
            drop-shadow(0 0 15px #5e0000);
    cursor: none;
}
#io-manifesto .label {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "STXinwei", "华文行楷", "方正舒体", "KaiTi", serif;
    font-weight: 500;                               /* 加粗 */
    font-size: 3rem;                                /* 调整大小 */
    color: #ffffff;                                 /* 黄金色文字 */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);      /* 微微阴影增加立体感 */
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);    /* 原有画布内阴影 */
    background-color: rgba(0,0,0,0.3);             /* 半透明底，提高可读性 */
    padding: 0.2em 0.5em;                           /* 底色周围留空 */
    border-radius: 5px;                             /* 圆角柔化 */
    transition: all 0.3s ease;                      /* 平滑过渡 */
}

/* 悬停发光效果 */
#io-manifesto .label:hover {
    color: #fffacd;
    text-shadow: 
        0 0 5px #fff387,
        0 0 10px #ffda6a,
        0 0 15px #ffda6a,
        0 0 20px #ffda6a;
    background-color: rgba(0,0,0,0.5); /* 悬停时底色更深 */
    transform: scale(1.05);            /* 放大效果 */
}


/* --- [回退] 未实体化的物件恢复为占位符 --- */
#io-barkeeper{
    top: 5%; 
    right: 0%;
    width: 30%; /* 定义画框尺寸 */
    height: 40%;
    padding: 1rem 2rem;
    background: url('../images/building2.png') no-repeat center center;
    background-size: contain;   /* 让整个图片都显示 */
    background-repeat: no-repeat;
    background-position: center;
    cursor: none;
}

#io-reservation {
    bottom: 0%;
    right: 20%;
    width: 20%; /* 定义画框尺寸 */
    height: 70%;
    padding: 1rem 2rem;
    background: url('../images/building0.png') no-repeat center center;
    background-size: contain;   /* 让整个图片都显示 */
    background-repeat: no-repeat;
    background-position: center;
    cursor: none;
}

#io-barkeeper .book-cover,
#io-reservation .book-cover {
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#io-reservation .label:hover {
    color: #ffffff; /* 红色文字 */
    text-shadow: 
        0 0 5px #ff6666,
        0 0 10px #ff3333,
        0 0 15px #ff1a1a,
        0 0 20px #cc0000; /* 红色渐变光晕 */
    background-color: rgba(0,0,0,0.5); /* 悬停时底色更深 */
    transform: scale(1.05);            /* 放大效果 */
}
#io-barkeeper .label:hover {
    color: #ffffff; /* 明亮绿文字 */
    text-shadow: 
        0 0 5px #66ff66,
        0 0 10px #33ff33,
        0 0 15px #00cc00,
        0 0 20px #00ff00; /* 绿色渐变光晕 */
    background-color: rgba(0,0,0,0.5); /* 悬停时底色更深 */
    transform: scale(1.05);            /* 放大效果 */
}


#io-barkeeper .label{
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "STXinwei", "华文行楷", "方正舒体", "KaiTi", serif;
    font-weight: 500;                               /* 加粗 */
    font-size: 3rem;                                /* 调整大小 */
    color: #ffffff;                                 /* 黄金色文字 */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);      /* 微微阴影增加立体感 */
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);    /* 原有画布内阴影 */
    background-color: rgba(0,0,0,0.3);             /* 半透明底，提高可读性 */
    padding: 0.2em 0.5em;                           /* 底色周围留空 */
    border-radius: 5px;                             /* 圆角柔化 */
    transition: all 0.3s ease;                      /* 平滑过渡 */
}
#io-reservation .label {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "STXinwei", "华文行楷", "方正舒体", "KaiTi", serif;
    font-weight: 500;                               /* 加粗 */
    font-size: 3rem;                                /* 调整大小 */
    color: #ffffff;                                 /* 黄金色文字 */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);      /* 微微阴影增加立体感 */
    box-shadow: inset 0 0 10px rgba(0,0,0,0.3);    /* 原有画布内阴影 */
    background-color: rgba(0,0,0,0.3);             /* 半透明底，提高可读性 */
    padding: 0.2em 0.5em;                           /* 底色周围留空 */
    border-radius: 5px;                             /* 圆角柔化 */
    transition: all 0.3s ease;                      /* 平滑过渡 */
}

#io-barkeeper:hover{
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.7))
            drop-shadow(0 0 15px #5e0000);
}
#io-reservation:hover {
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.7))
            drop-shadow(0 0 15px #5e0000);
}


/* --- [实体化 V2.0] 菜单皮面簿 --- */
#io-menu {
    top: 5%;
    left: 20%;
    width: 25%;
    height: 60%;
    perspective: 1000px; /* 为子元素的3D变换创建视距 */
    background: url('../images/building3.png') no-repeat center center;
    background-size: contain;   /* 让整个图片都显示 */
    background-repeat: no-repeat;
    background-position: center;
    cursor: none;
}
#io-menu .book-cover {
    width: 100%;
    height: 100%;
    border-radius: 2px 5px 5px 2px;
    position: relative; /* 用于定位伪元素和标签 */
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d; /* 保留3D变换效果 */
    transform-origin: left center; /* 设置旋转轴为左侧中心 */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

#io-menu:hover {
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.7))
            drop-shadow(0 0 15px rgb(74, 0, 0)); 
}

#io-menu .label {
    font-family: "STXinwei", "华文行楷", "方正舒体", "KaiTi", serif;
    font-weight: 500;             
    font-size: 3rem;           
    color: #ffffff;              
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
    transform: translateZ(10px); 
    transition: all 0.3s ease;   
    background-color: rgba(0, 0, 0, 0.4); /* 半透明黑色底 */
    padding: 0.1em 0.5em;              /* 文字周围留空，让背景显得更自然 */
    border-radius: 5px;                 /* 圆角让底色更柔和 */
}

/* 悬停发光效果 */
#io-menu .label:hover {
    color: #fffacd;  
    text-shadow: 
        0 0 5px #66ccff,
        0 0 10px #33b3ff,
        0 0 15px #00dae6,
        0 0 20px #00fbff;
    transform: translateZ(10px) scale(1.05); 
    background-color: rgba(0, 0, 0, 0.6); /* 鼠标悬停时底色更深 */
}




/* --- [重构] 场景覆盖层 (在舞台内) --- */
.scene-overlay {
    position: absolute; /* [修改] 改为 absolute, 约束在 #scene-stage 内 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* [修改] 覆盖层本身透明，背景由内容层提供 */
    backdrop-filter: none; /* [移除] 全局毛玻璃效果 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100; /* [修改] z-index不需要那么高了 */
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%); /* 默认将整个场景移到屏幕右侧外 */
    transition: transform 0.6s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.6s ease; /* [修改] 动画曲线 */
}

/* [新增] 从左侧滑入的场景修饰符 */
.scene-overlay.from-left {
    transform: translateX(-100%); /* 默认位置在屏幕左侧外 */
}

.scene-overlay.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0); /* visible状态，移回屏幕内 */
}

.scene-content {
    background: rgba(10, 5, 5, 0.95); /* [修改] 内容层负责背景，且更不透明 */
    position: relative;
    width: 100%; /* [修改] 撑满父容器 */
    height: 100%; /* [修改] 撑满父容器 */
    box-shadow: -5px 0px 15px rgba(0,0,0,0.5); /* [新增] 只在左侧有阴影，模拟从右滑入感 */
}

/* [新增] 从左侧滑入的场景，阴影在右侧 */
.scene-overlay.from-left .scene-content {
    box-shadow: 5px 0px 15px rgba(0,0,0,0.5);
}

.close-btn {
    position: fixed;
    top: 10%; /* [调整] 增加边距 */
    right: 10%; /* [调整] 增加边距 */
    font-size: 3rem; /* [调整] 增大点击区域 */
    color: var(--paper-color);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 0; /* [新增] 移除默认padding */
    line-height: 1; /* [新增] 优化对齐 */
    background: url('../images/cancel.png') no-repeat center center;
    background-size: contain;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1));
    cursor: none;
}
.close-btn:hover {
    transform: scale(0.9);
    filter: brightness(0.7); /* 变暗 30% */
}


/* --- “拍立得墙” (Barkeeper) 场景专属样式 --- */
.barkeeper-scene {
    display: flex; /* 改为flex布局以支持分类 */
    flex-direction: column; /* 纵向排列 */
    gap: 3rem; /* 分类之间的间距 */
    padding: 2rem;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    box-sizing: border-box;
}
.barkeeper-scene h2 {
    font-family: 'Special Elite', cursive;
    color: var(--dim-gold);
    text-align: center;
    border-bottom: 1px solid var(--dim-gold);
    padding-bottom: 1rem;
    margin: 0;
}
.polaroid-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* [调整] 增大卡片最小宽度 */
    gap: 2.5rem; /* 网格间距 */
}

.polaroid-card {
    background: var(--paper-color);
    padding: 15px 15px 20px 15px; /* 调整内边距以适应方形 */
    border: 1px solid #ccc;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1.35; /* [调整] 增加卡片高度，为描述区预留空间 */
    display: flex;
    flex-direction: column; /* 让图片和文字纵向排列 */
    position: relative;
}
.polaroid-card:hover {
    transform: scale(1.05) rotate(0deg) !important; /* 悬停时扶正并放大 */
    z-index: 10;
    box-shadow: 10px 10px 25px rgba(0,0,0,0.7);
}

.polaroid-card .avatar-container {
    background: #000;
    overflow: hidden;
    height:25%;
    width: 35%;
    margin: 0 auto;
}
.polaroid-card .avatar {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片填满容器而不变形 */
    display: block;
    filter: sepia(0.3) grayscale(0.2); /* 复古滤镜 */
    transition: filter 0.3s ease;
}
.polaroid-card:hover .avatar {
    filter: sepia(0) grayscale(0);
}

.polaroid-card .caption {
    font-family: 'Special Elite', cursive;
    margin-top: 10px;
    color: #333;
    text-align: center;
    flex-shrink: 0;
}
.polaroid-card .name {
    font-size: 1.3rem; /* 微调 */
    font-weight: bold;
}
.polaroid-card .title {
    font-size: 1rem; /* 微调 */
    margin-top: 5px;
    color: #555;
}
.polaroid-card .description {
    font-size: 0.8rem;
    margin-top: 10px;
    color: #777; /* 更浅的颜色，作为次要信息 */
    line-height: 1.4;
}


/* --- 自定义滚动条 --- */
.barkeeper-scene::-webkit-scrollbar {
    width: 12px;
}
.barkeeper-scene::-webkit-scrollbar-track {
    background: var(--smoky-gray);
}
.barkeeper-scene::-webkit-scrollbar-thumb {
    background-color: var(--dim-gold);
    border-radius: 20px;
    border: 3px solid var(--smoky-gray);
}


/* --- [重构] 语言切换器 (作为页脚) --- */
#lang-switcher-object {
    position: relative; /* [修改] 改为相对定位，融入文档流 */
    padding: 10px 20px;
    background: rgba(0,0,0,0.4);
    border-top: 2px solid var(--dark-red); /* [新增] 构成红框的下边 */
    text-align: center;
    z-index: 10;
    flex-shrink: 0; /* [新增] 防止页脚在 flex 布局中被压缩 */
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: baseline;
}

#lang-switcher-object a {
    font-family: 'Special Elite', cursive;
    text-decoration: none;
    font-size: 1.8rem;
    padding: 0.2rem;
    color: #8f8a8a; /* 默认颜色 */
    transition: all 0.3s ease;
}
#lang-switcher-object a:hover {
    color: var(--paper-color);
    text-shadow: 0 0 5px var(--paper-color);
}
#lang-switcher-object a.active {
    color: var(--dim-gold); /* 激活颜色 */
    text-shadow: 0 0 8px var(--dim-gold);
}

/* ==========================================================================
   宣言场景样式 - 机密文件风格
   ========================================================================== */

/* [中文注释] 宣言场景的主容器 */
.manifesto-scene {
    background: none; /* 移除默认背景，让纸张效果显示 */
    padding: 0;
    height: 100%;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

/* [中文注释] 机密文件纸张效果 */
.document-paper {
    background: url("../images/bg1.png") no-repeat center center;
    max-width: 700px;
    width: 90%;
    padding: 60px 80px 80px 80px; /* [修改] 增加底部padding，确保签名区域在纸张内 */
    margin: 0 auto 3rem auto;
    position: relative;
    /* [新增] 确保所有内容都在纸张背景内 */
    min-height: auto;
    overflow: visible;
    filter: drop-shadow(0 14px 16px rgba(0,0,0,1));
    /* box-shadow: 
        0 4px 20px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.1); */
    
    /* [中文注释] 纸张的边缘效果和轻微弯曲 */
    border-radius: 2px;
    transform: perspective(1000px) rotateX(1deg);
    background-position: center;
    background-repeat: no-repeat;

}

/* [中文注释] 添加纸张的微妙动画 - 模拟微风吹拂 */
.document-paper {
    animation: paper-breath 6s ease-in-out infinite;
}

@keyframes paper-breath {
    0%, 100% { transform: perspective(1000px) rotateX(1deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateX(0.5deg) translateY(-2px); }
}

/* [中文注释] 在纸张上添加一些轻微的折痕和污渍 */
.document-paper::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139,69,19,0.1) 30%, rgba(139,69,19,0.1) 70%, transparent 100%);
    transform: rotate(-0.5deg);
}

.document-paper::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(101,67,33,0.08) 0%, rgba(101,67,33,0.04) 50%, transparent 70%);
    border-radius: 50%;
}

/* [中文注释] 文件头部 - 机密标记和文件信息 */
.document-header {
    position: relative;  /* ✅ 关键！让 ::before 参照这个容器定位 */
    height: 100px;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace;
    font-size: 1.2rem;
    color: #8B0000;
    font-weight: bold;
    letter-spacing: 2px;
    overflow: hidden; /* 可选，避免伪元素溢出 */
}

.document-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("../images/header1.png") no-repeat center center;
    background-size: cover;
    opacity: 0.5;
    z-index: -1;
}


.classification {
    border: 2px solid #8B0000;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(139,0,0,0.1);
}

.file-info {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
    font-size: 1.1rem; /* [修改] 从0.9rem增加到1.1rem */
    color: #e0e0e0; /* [修改] 改为浅白色，保持可读性 */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* [新增] 添加阴影让白字更清晰 */
}

/* [中文注释] 文档标题 */
.document-title {
    font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; /* [修改] 添加中文字体支持 */
    font-size: 2.6rem; /* [修改] 从2.2rem增加到2.6rem */
    text-align: center;
    color: #f0f0f0; /* [修改] 改为白色，与正文保持一致 */
    margin: 40px 0;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); /* [修改] 增强阴影，让白字更清晰 */
    line-height: 1.2;
}

/* [中文注释] 文档正文区域 */
.document-body {
    font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; /* [修改] 添加中文字体支持 */
    line-height: 1.8;
    color: #f5f5f5; /* [修改] 改为淡白色，在米黄色背景上清晰可见 */
    font-size: 1.3rem; /* [修改] 从1.1rem增加到1.3rem */
    text-align: left;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4); /* [新增] 添加阴影让白字更清晰 */
}

.manifesto-section {
    margin-bottom: 35px;
}

.manifesto-section h2 {
    font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; /* [新增] 统一字体族 */
    font-size: 1.6rem; /* [修改] 从1.4rem增加到1.6rem */
    color: #8B0000;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}

.manifesto-section p {
    margin-bottom: 15px;
    text-indent: 2em; /* [中文注释] 段落首行缩进，模拟打字机效果 */
}

/* [中文注释] 特殊效果：删除线和强调 */
.strikethrough {
    position: relative;
    text-decoration: none;
}

.strikethrough::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 2px;
    background: #8B0000;
    transform: rotate(-1deg);
}

.emphasis {
    font-weight: bold;
    color: #8B0000;
    text-shadow: 0 0 3px rgba(139,0,0,0.3);
}

/* [中文注释] 打字机风格的列表 */
.typewriter-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.typewriter-list li {
    margin-bottom: 8px;
    text-indent: 3em;
    position: relative;
}

/* [中文注释] 添加轻微的字符错位效果，模拟打字机 */
.typewriter-list li:nth-child(2n) {
    transform: translateY(0.5px);
}

.typewriter-list li:nth-child(3n) {
    transform: translateY(-0.5px);
}

/* [中文注释] 文档底部 - 签名和印章 */
.document-footer {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* [新增] 确保底部区域在纸张内正确显示 */
    position: relative;
    z-index: 1;
    width: 100%;
}

.signature-area {
    text-align: left;
}

.signature-line {
    width: 200px;
    height: 2px;
    background: #f0f0f0; /* [修改] 改为白色，与文字颜色保持一致 */
    margin-bottom: 10px;
}

.signature-text {
    font-family: 'Brush Script MT', 'Kaiti SC', '楷体', cursive; /* [修改] 添加中文字体支持 */
    font-size: 2.2rem; /* [修改] 增大字体 */
    color: #f0f0f0; /* [修改] 改为白色 */
    transform: rotate(-2deg);
    margin-left: 20px;
    /* [新增] 确保签名在纸张背景上可见 */
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3); /* [新增] 添加阴影让白字更清晰 */
}

/* [中文注释] 机密印章效果 */
.document-stamp {
    width: 120px;
    height: 120px;
    border: 4px solid #8B0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139,0,0,0.1);
    transform: rotate(15deg);
    position: relative;
}

.document-stamp::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #8B0000;
    border-radius: 50%;
    opacity: 0.6;
}

.stamp-text {
    font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; /* [修改] 统一字体族 */
    font-size: 1.2rem; /* [修改] 从1rem增加到1.2rem */
    font-weight: bold;
    color: #8B0000;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 1px;
}

/* [中文注释] 宣言场景的自定义滚动条 */
.manifesto-scene::-webkit-scrollbar {
    width: 12px;
}
.manifesto-scene::-webkit-scrollbar-track {
    background: var(--smoky-gray);
}
.manifesto-scene::-webkit-scrollbar-thumb {
    background-color: var(--dim-gold);
    border-radius: 20px;
    border: 3px solid var(--smoky-gray);
}

/* ==========================================================================
   菜单场景样式 - 复古酒吧菜单风格
   ========================================================================== */

/* [中文注释] 菜单场景的主容器 */
.menu-scene {
    background: none; /* 移除默认背景，让纸张效果显示 */
    padding: 0;
    height: 100%;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
}

/* [中文注释] 菜单纸张效果 - 类似宣言场景但稍有不同 */
.menu-paper {
    
    background: linear-gradient(
        135deg, 
        rgba(255, 253, 245, 0.7) 0%,  
        rgba(244,240,210,0.8) 20%, 
        rgba(240,236,200,0.8) 40%,  
        rgba(236,232,192,0.8) 60%,  
        rgba(241,228,202,0.8) 80%,  
        rgba(41, 0, 0, 0.8) 100%     
    ); 
    
    /* [修改] 稍微偏黄的纸张色调，营造老式菜单感 */
    max-width: 800px; /* [修改] 稍宽一些，适应作品展示 */
    width: 90%;
    padding: 50px 60px 60px 60px;
    margin: 0 auto 3rem auto;
    position: relative;
    min-height: auto;
    overflow: visible;
    box-shadow: 
        0 6px 25px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.1);
    
    /* [中文注释] 纸张的边缘效果和轻微弯曲 */
    border-radius: 3px;
    transform: perspective(1000px) rotateX(0.5deg);
    
    /* [中文注释] 创建纸张纹理 */
    /* background-image: 
        radial-gradient(circle at 15% 25%, rgba(139,69,19,0.04) 1px, transparent 1px),
        radial-gradient(circle at 85% 75%, rgba(139,69,19,0.04) 1px, transparent 1px),
        radial-gradient(circle at 45% 45%, rgba(139,69,19,0.03) 1px, transparent 1px); */
    /* background-size: 60px 60px, 40px 40px, 80px 80px; */
    background-position: center;
    background-repeat: no-repeat;

}

/* [中文注释] 菜单纸张的微妙动画 */
.menu-paper {
    animation: menu-paper-breath 8s ease-in-out infinite;
}

@keyframes menu-paper-breath {
    0%, 100% { transform: perspective(1000px) rotateX(0.5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateX(0deg) translateY(-1px); }
}

/* [中文注释] 菜单头部 */
.menu-header {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 3px double var(--dark-red);
    padding-bottom: 30px;
}

.menu-title {
    font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace;
    font-size: 3rem;
    color: var(--dark-red);
    margin: 0 0 15px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.menu-subtitle {
    font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace;
    font-size: 1.4rem;
    color: #666;
    font-style: italic;
    margin: 0;
    letter-spacing: 1px;
}

/* [中文注释] 菜单内容区域 - 非法海报墙风格 */
.menu-content {
    position: relative;
    padding: 60px 40px; /* [修改] 增加内边距，给海报更多空间 */
    min-height: 1400px; /* [修改] 增加高度，确保所有海报都能显示 */
    /* [新增] 添加墙面纹理背景 */
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139,0,0,0.2) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(0,0,0,0.3) 1px, transparent 1px);
    background-size: 100px 100px, 60px 60px;
    /* [新增] 确保内容可以滚动 */
    overflow: visible;
}

/* [中文注释] 墙面背景涂鸦效果 - 调整位置避免遮挡海报 */
.menu-content::before {
    content: 'UNDERGROUND';
    position: absolute;
    top: 700px; /* [修改] 移到中间偏下，避开海报区域 */
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    font-family: 'Special Elite', monospace;
    font-size: 3.5rem; /* [修改] 稍微缩小，给海报更多空间 */
    color: rgba(139,0,0,0.04);
    font-weight: bold;
    letter-spacing: 8px;
    pointer-events: none;
    z-index: 0;
}

.menu-content::after {
    content: '★ REBEL ART ★';
    position: absolute;
    bottom: 200px; /* [修改] 上移，避免遮挡下方海报 */
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    font-family: 'Special Elite', monospace;
    font-size: 1.2rem;
    color: rgba(0,0,0,0.08);
    font-weight: bold;
    letter-spacing: 2px;
    pointer-events: none;
    z-index: 0;
}

/* [中文注释] 单个作品条目 - 像贴在墙上的海报 */
.menu-item {
    position: absolute;
    width: 480px;
    background: #fff;
    padding: 20px;
    border-radius: 3px;
    transition: all 0.3s ease;
    cursor: default;
    /* [新增] 海报布局 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* [新增] 海报纸张效果 */
    box-shadow: 
        0 8px 16px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.5);
    border: 1px solid #e0e0e0;
    
    /* [新增] 撕纸边缘效果 */
    background-image: 
        linear-gradient(45deg, transparent 0px, transparent 2px, #fff 2px),
        linear-gradient(-45deg, transparent 0px, transparent 1px, #fff 1px);
    background-size: 8px 8px, 6px 6px;
    background-position: top left, top right;
    background-repeat: repeat-x;
}

/* [中文注释] 为每个作品设置不同的位置和角度 - 分散布局 */
.menu-item:nth-child(1) {
    top: 50px;
    left: 20px; /* [修改] 移到最左边 */
    transform: rotate(-3deg);
    z-index: 4;
}

.menu-item:nth-child(2) {
    top: 280px;
    right: 20px; /* [修改] 移到最右边 */
    transform: rotate(2deg);
    z-index: 3;
}

.menu-item:nth-child(3) {
    top: 650px;
    left: 50px; /* [修改] 放在左边，但稍微靠右一点避免重叠 */
    transform: rotate(-1.5deg);
    z-index: 2;
}

.menu-item:nth-child(4) {
    top: 1000px;
    right: 30px; /* [修改] 放在右边，稍微调整避免完全贴边 */
    transform: rotate(2.5deg);
    z-index: 1;
}

/* [中文注释] 为不同海报添加特殊的手绘装饰 */

/* 第一个海报：右上角的星号涂鸦 */
.menu-item:nth-child(1) .work-details::before {
    content: '★';
    position: absolute;
    top: -15px;
    right: 15px;
    color: var(--dark-red);
    font-size: 1.5rem;
    transform: rotate(15deg);
    opacity: 0.7;
}

/* 第二个海报：左下角的箭头涂鸦 */
.menu-item:nth-child(2) .work-details::after {
    content: '→';
    position: absolute;
    bottom: -10px;
    left: 20px;
    color: #666;
    font-size: 1.8rem;
    transform: rotate(-10deg);
    opacity: 0.6;
    font-weight: bold;
}

/* 第三个海报：右边的感叹号 */
.menu-item:nth-child(3) .work-details::before {
    content: '!';
    position: absolute;
    top: 50%;
    right: -25px;
    color: var(--dark-red);
    font-size: 2rem;
    transform: rotate(25deg) translateY(-50%);
    opacity: 0.5;
    font-weight: bold;
}

/* 第四个海报：左上角的问号 */
.menu-item:nth-child(4) .work-details::before {
    content: '?';
    position: absolute;
    top: -20px;
    left: 10px;
    color: #666;
    font-size: 1.8rem;
    transform: rotate(-20deg);
    opacity: 0.6;
    font-weight: bold;
}

/* [中文注释] 胶带效果 - 用伪元素创建 */
.menu-item::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 80px;
    height: 20px;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.9) 0%, 
        rgba(240,240,240,0.8) 50%, 
        rgba(255,255,255,0.9) 100%);
    border: 1px solid rgba(200,200,200,0.5);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 5;
}

/* [中文注释] 右下角的小胶带 */
.menu-item::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20px;
    transform: rotate(15deg);
    width: 30px;
    height: 15px;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.8) 0%, 
        rgba(230,230,230,0.7) 50%, 
        rgba(255,255,255,0.8) 100%);
    border: 1px solid rgba(200,200,200,0.4);
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.menu-item:hover {
    transform: rotate(0deg) scale(1.02);
    z-index: 10 !important;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.5);
}

/* [中文注释] 悬停时胶带也要调整 */
.menu-item:hover::before {
    transform: translateX(-50%) rotate(0deg);
}

.menu-item:hover::after {
    transform: rotate(8deg);
}



/* [中文注释] 作品图片区域 - 海报主图 */
.work-image {
    position: relative;
    width: 300px;
    height: 200px;
    margin-bottom: 15px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.3),
        inset 0 0 0 2px rgba(255,255,255,0.8);
    border: 1px solid #ccc;
    /* [新增] 图片边缘破损效果 */
    clip-path: polygon(
        0% 2%, 2% 0%, 98% 0%, 100% 3%, 
        100% 97%, 98% 100%, 2% 100%, 0% 98%
    );
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) contrast(1.1) brightness(0.9); /* 强化复古滤镜 */
    transition: filter 0.3s ease;
}

.menu-item:hover .work-image img {
    filter: sepia(0.1) contrast(1.2) brightness(1); /* 悬停时略微清晰 */
}

/* [中文注释] 作品状态标签 */
.work-status {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-family: 'Special Elite', monospace;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.work-status.released {
    background: rgba(34,139,34,0.9);
    color: white;
}

.work-status.in-development {
    background: rgba(255,165,0,0.9);
    color: white;
}

.work-status.coming-soon {
    background: rgba(139,0,0,0.9);
    color: white;
}

/* [中文注释] 作品详情区域 - 海报风格 */
.work-details {
    width: 100%;
    text-align: center;
}

.work-header {
    margin-bottom: 15px;
    position: relative;
}

.work-name {
    font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace;
    font-size: 1.6rem;
    color: var(--dark-red);
    margin: 0 0 8px 0;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* [新增] 手写涂鸦效果 */
    position: relative;
}

/* [新增] 为作品名称添加下划线涂鸦 */
.work-name::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--dark-red);
    border-radius: 1px;
    opacity: 0.6;
}

.work-type {
    font-family: 'Special Elite', monospace;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    font-style: italic;
    text-transform: lowercase;
}

.work-year {
    position: absolute;
    top: -10px;
    right: -10px;
    font-family: 'Special Elite', monospace;
    font-size: 1.1rem;
    color: var(--dark-red);
    font-weight: bold;
    /* [新增] 年份圆圈标记效果 */
    background: #fff;
    border: 2px solid var(--dark-red);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.work-description {
    font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin: 15px 0;
    text-align: left;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    /* [新增] 段落手写感 */
    text-indent: 1em;
}

/* [中文注释] 作品操作区域 - 手写标签风格 */
.work-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative;
}

.work-link {
    font-family: 'Special Elite', monospace;
    text-decoration: none;
    color: var(--dark-red);
    padding: 8px 16px;
    border: 2px solid var(--dark-red);
    border-radius: 0;
    transition: all 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
    background: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
    
    /* [新增] 手撕标签效果 */
    clip-path: polygon(
        5% 0%, 95% 0%, 100% 20%, 95% 100%, 
        5% 100%, 0% 20%
    );
    
    /* [新增] 倾斜效果 */
    transform: rotate(-1deg);
}

/* [新增] 添加别针效果 */
.work-link::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: silver;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.work-link:hover {
    background: var(--dark-red);
    color: white;
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(139,0,0,0.4);
}

/* [中文注释] 菜单底部 */
.menu-footer {
    margin-top: 50px;
    text-align: center;
    border-top: 3px double var(--dark-red);
    padding-top: 30px;
}

.establishment-info {
    font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace;
}

.establishment-line {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
}

.establishment-signature {
    font-size: 1.4rem;
    color: var(--dark-red);
    font-weight: bold;
    letter-spacing: 2px;
}

/* [中文注释] 菜单场景的自定义滚动条 */
.menu-scene::-webkit-scrollbar {
    width: 12px;
}
.menu-scene::-webkit-scrollbar-track {
    background: var(--smoky-gray);
}
.menu-scene::-webkit-scrollbar-thumb {
    background-color: var(--dim-gold);
    border-radius: 20px;
    border: 3px solid var(--smoky-gray);
}

/* ==========================================================================
   预约场景样式 - 会员申请/合作联系
   ========================================================================== */
.reservation-scene {
		background: none;
		padding: 0;
		height: 100%;
		overflow-y: auto;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		padding-top: 2rem;
}

.reservation-paper {
		/* 黑卡名片风：深色绒面 + 昏金点缀 */
		background: radial-gradient(1200px 600px at 50% 0%, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 60%),
					linear-gradient(180deg, #1b1514 0%, #0f0c0b 100%);
		max-width: 900px;
		width: 90%;
		padding: 50px 60px 60px 60px;
		margin: 0 auto 3rem auto;
		position: relative;
		min-height: auto;
		overflow: visible;
		box-shadow: 0 10px 30px rgba(0,0,0,0.6);
		border-radius: 8px;
		transform: perspective(1000px) rotateX(0.5deg);
		/* 细腻噪点绒面 */
		background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 1px, transparent 1px),
						radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 1px, transparent 1px),
						linear-gradient(180deg, #1b1514 0%, #0f0c0b 100%);
		background-size: 40px 40px, 60px 60px, auto;
}

.reservation-paper { animation: reservation-paper-breath 8s ease-in-out infinite; }
@keyframes reservation-paper-breath {
		0%, 100% { transform: perspective(1000px) rotateX(0.5deg) translateY(0px); }
		50% { transform: perspective(1000px) rotateX(0deg) translateY(-1px); }
}

.reservation-header {
		text-align: center;
		margin-bottom: 40px;
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(180,134,34,0.4);
		position: relative;

}
.reservation-header::after {
		content: '';
		position: absolute;
		left: 50%;
		bottom: -2px;
		transform: translateX(-50%);
		width: 140px;
		height: 3px;
		background: linear-gradient(90deg, transparent, rgba(180,134,34,0.8), transparent);
}
.reservation-title {
		font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace;
		font-size: 2.6rem;
		color: #f5f0e6;
		margin: 0 0 12px 0;
		letter-spacing: 2px;
		text-shadow: 0 0 18px rgba(180,134,34,0.25);
		line-height: 1.1;
}
.reservation-subtitle {
		font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace;
		font-size: 1.2rem;
		color: rgba(245,240,230,0.7);
		font-style: italic;
		margin: 0;
		letter-spacing: 2px;
}

.reservation-content { 
    display: flex; 
    flex-direction: column; 
    gap: 40px;

 }
.reservation-grid { display: grid; grid-template-columns: 360px 1fr; gap: 40px; align-items: start; }
.left-pane { position: sticky; top: 40px; align-self: start; }

/* 名片 */
.business-card {
		background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
		border: 1px solid rgba(180,134,34,0.35);
		box-shadow: 0 10px 25px rgba(0,0,0,0.35);
		border-radius: 10px;
		padding: 24px 22px;
		color: #f5f0e6;
		text-align: left;
		position: relative;
        
}
.business-card::after {
		content: '';
		position: absolute;
		right: 16px; top: 16px;
		width: 40px; height: 40px;
		border-radius: 50%;
		border: 1px dashed rgba(180,134,34,0.5);
		box-shadow: inset 0 0 20px rgba(180,134,34,0.1);
}
.business-card .brand { font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; font-size: 1.4rem; letter-spacing: 1px; }
.business-card .role { color: rgba(245,240,230,0.7); margin: 4px 0 8px 0; font-size: 0.95rem; }
.business-card .mail { font-weight: bold; letter-spacing: 1px; }
.business-card .region { color: rgba(245,240,230,0.6); font-size: 0.9rem; margin-top: 6px; }

/* 可撕联条 */
.tear-strip { margin-top: 16px; padding-top: 14px; border-top: 1px dashed rgba(180,134,34,0.35); display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; position: relative; }
.tear-strip .perforation { position: absolute; left: -8px; top: -8px; bottom: -8px; width: 6px; background: repeating-linear-gradient(#0f0c0b 0 8px, rgba(255,255,255,0.08) 8px 12px); border-radius: 6px; }
.tear-item { display: inline-block; text-align: center; padding: 10px 8px; border: 1px dashed rgba(180,134,34,0.45); color: var(--dim-gold); text-decoration: none; font-family: 'Special Elite', monospace; letter-spacing: 1px; transition: all 0.2s ease; }
.tear-item:hover { background: rgba(180,134,34,0.12); color: #fff; transform: translateY(-1px); }

/* 索引卡叠栈（服务） */
.right-pane h2 { margin-top: 0; }
.index-stack { position: relative; }
.index-stack .service-card { transform: rotate(-1.2deg); }
.index-stack .service-card:nth-child(2n) { transform: rotate(0.8deg); }
.index-stack .service-card:nth-child(3n) { transform: rotate(-0.4deg); }
.index-stack .service-card { margin-bottom: 18px; }
.contact-section h2, .services-section h2 { 
		font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; 
		font-size: 1.8rem; color: var(--dark-red); margin: 0 0 20px 0; border-bottom: 2px solid var(--dark-red); padding-bottom: 10px; 
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.contact-item { display: flex; align-items: center; gap: 15px; padding: 18px; background: rgba(255,255,255,0.06); border-radius: 8px; border: 1px solid rgba(180,134,34,0.25); }
.contact-icon { font-size: 1.6rem; color: var(--dim-gold); }
.contact-info { flex: 1; }
.contact-label { font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; font-size: 0.85rem; color: rgba(245,240,230,0.6); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.contact-value { font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; font-size: 1.05rem; color: #f5f0e6; font-weight: bold; }
.social-links h3 { font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; font-size: 1.3rem; color: #f5f0e6; margin: 10px 0 12px 0; letter-spacing: 1px; }
.social-grid { display: flex; gap: 14px; flex-wrap: wrap; }
.social-link { display: inline-block; padding: 10px 16px; background: transparent; color: var(--dim-gold); text-decoration: none; border-radius: 6px; font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; font-size: 0.9rem; transition: all 0.3s ease; border: 1px solid rgba(180,134,34,0.5); box-shadow: inset 0 0 0 1px rgba(180,134,34,0.15); }
.social-link:hover { background: rgba(180,134,34,0.15); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(180,134,34,0.25); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.service-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px; background: rgba(255,255,255,0.04); border-radius: 10px; border: 1px solid rgba(180,134,34,0.25); transition: all 0.3s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--dark-red), #ff6b6b, var(--dark-red)); transform: scaleX(0); transition: transform 0.3s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.35); border-color: rgba(180,134,34,0.6); }
.service-icon { font-size: 2.2rem; color: var(--dim-gold); flex-shrink: 0; }
.service-content { flex: 1; }
.service-name { font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; font-size: 1.2rem; color: #f5f0e6; margin: 0 0 8px 0; font-weight: bold; letter-spacing: 1px; }
.service-description { font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; font-size: 0.95rem; color: rgba(245,240,230,0.75); line-height: 1.6; margin: 0; }
.reservation-footer { margin-top: 40px; text-align: center; border-top: 1px solid rgba(180,134,34,0.25); padding-top: 20px; }
.footer-note { font-family: 'Special Elite', 'Courier New', 'Microsoft YaHei', '微软雅黑', monospace; }
.note-line { font-size: 1.05rem; color: rgba(245,240,230,0.85); font-style: italic; margin-bottom: 8px; }
.note-signature { font-size: 0.95rem; color: rgba(245,240,230,0.55); letter-spacing: 2px; }

/* 滚动条 */
.reservation-scene::-webkit-scrollbar { width: 12px; }
.reservation-scene::-webkit-scrollbar-track { background: var(--smoky-gray); }
.reservation-scene::-webkit-scrollbar-thumb { background-color: var(--dim-gold); border-radius: 20px; border: 3px solid var(--smoky-gray); }

@media (max-width: 768px) {
		.reservation-paper { 
            padding: 30px 20px; margin: 0 auto 2rem auto; transform: none; 
        }
		.contact-grid { grid-template-columns: 1fr; gap: 20px; }
		.services-grid { grid-template-columns: 1fr; gap: 20px; }
		.service-card { flex-direction: column; text-align: center; gap: 15px; }
		.service-icon { font-size: 2.5rem; }
		.social-grid { justify-content: center; gap: 15px; }
		.social-link { padding: 10px 15px; font-size: 0.8rem; }
}

/* [中文注释] 响应式设计 - 小屏幕适配 */
@media (max-width: 768px) {
    .menu-content {
        min-height: 1200px; /* 为移动端增加更多高度 */
        padding: 20px 10px;
    }
    
    .menu-item {
        position: relative !important; /* 覆盖绝对定位 */
        width: 90% !important;
        margin: 30px auto !important;
        transform: none !important; /* 移除旋转效果 */
        top: auto !important;
        left: auto !important;
        right: auto !important;
        display: block; /* 改为块级布局 */
    }
    
    .work-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 15px auto;
    }
    
    .work-year {
        position: static;
        display: inline-block;
        transform: none;
        width: auto;
        height: auto;
        background: none;
        border: none;
        box-shadow: none;
        margin-top: 5px;
    }
    
    /* 隐藏背景涂鸦，避免在小屏幕上造成干扰 */
    .menu-content::before,
    .menu-content::after {
        display: none;
    }
    
    /* 调整手绘装饰的位置 */
    .menu-item .work-details::before,
    .menu-item .work-details::after {
        display: none; /* 在移动端隐藏装饰元素 */
    }
}

.logo2{
    width: 150px;
    height: 75px;
    filter:
        drop-shadow(0 0 2px  rgb(255, 255, 255))
        drop-shadow(0 0 4px  rgb(255, 255, 255))
        drop-shadow(0 0 8px  rgb(255, 255, 255))
        drop-shadow(0 0 16px rgb(255, 255, 255));
}