.page-border {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* 2. 这里的层级要最高，确保在所有元素之上 */
    z-index: 9999;
    background: url('../imges/ba.png') no-repeat center center fixed;
    background-size: cover;
    pointer-events: none;
}

@font-face {
    font-family: 'zh-font';
    src: url('./逐浪萌芽字.ttf') format('truetype');
}

@font-face {
    font-family: 'zh-xing-font';
    src: url('./c16xcnb.ttf') format('truetype');
}


/* 测试内容，方便查看滚动效果 */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'zh-xing-font';
}

.section {
    height: 100vh;
    width: 100%;
}

.s1 {
    background: url(../imges/2.png) no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1400px;
    height: 80vh;
    margin: 0 auto;
}


/* 文字部分 */

.info-content {
    flex: 1;
    z-index: 2;
}

.en-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0);
    display: block;
}

.zh-title {
    font-size: 3.5rem;
    margin-top: -45px;
    letter-spacing: 15px;
    color: #333;
}

.line {
    width: 60px;
    height: 4px;
    background: #000;
    margin: 25px 0;
}


/* 四图拼贴核心布局 */

.image-grid {
    flex: 1.2;
    display: grid;
    /* 定义3列3行，方便错开大小 */
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 15px;
    height: 500px;
}

.grid-item {
    overflow: hidden;
    border-radius: 20px;
    /* 还原圆角 */
    /* box-shadow: inset 8px 7px 35px 2px rgb(255 255 255); */
    /* 还原投影 */
    opacity: 0;
    /* 为GSAP预留初始状态 */
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.2); */
    border-radius: 20px;
    transition: all 0.5s ease-in-out;
    /* 还原投影 */
}


/* 一比一还原位置 */

.item-1 {
    grid-area: 1 / 1 / 8 / 7;
}


/* 左上大图 */

.item-2 {
    grid-area: 2 / 7 / 6 / 13;
}


/* 右上中图 */

.item-3 {
    grid-area: 8 / 2 / 13 / 6;
}


/* 左下小图 */

.item-4 {
    grid-area: 6 / 6 / 12 / 12;
}

.item-5 {
    grid-area: 3 / 2 / 9 / 12;
}

.info-se {
    width: 450px;
    height: auto;
    object-fit: contain;
    margin-bottom: 30px;
}


/* 右下主图 */


/* S2 整体背景 */

.s2 {
    background: url(../imges/2-f.png) no-repeat center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-2 {
    position: relative;
    width: 90%;
    max-width: 1400px;
    z-index: 5;
}


/* 背景装饰大字 */

.bg-text {
    position: absolute;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.character-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* 左侧图片视觉 */

.visual-wrapper {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.main-char-img {
    position: relative;
    width: 100%;
    height: 340px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    z-index: 2;
    display: flex;
}

.main-char-img img {
    width: 60%;
    height: 100%;
    object-fit: contain;
    filter: saturate(1.2) contrast(1.1);
}

.deco-box {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #0051ff;
    /* 萧逸应援色：深蓝 */
    top: 20px;
    left: -20px;
    z-index: 1;
    border-radius: 40px 0 40px 0;
}


/* 右侧文字信息 */

.info-panel {
    color: #fff;
    z-index: 3;
}

.tag-row .tag {
    background: #0051ff;
    padding: 5px 15px;
    font-size: 0.8rem;
    margin-right: 10px;
    letter-spacing: 2px;
}

.char-name {
    font-size: 5rem;
    margin: 20px 0;
    font-family: 'zh-font';
    text-shadow: 0 0 20px rgba(0, 81, 255, 0.5);
}

.en-name {
    font-size: 1.5rem;
    display: block;
    color: #0051ff;
    font-family: 'zh-xing-font';
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.stat-item .label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
}

.stat-item .value {
    font-size: 1.8rem;
    font-weight: bold;
}

.quote-box {
    border-left: 4px solid #0051ff;
    padding-left: 20px;
    margin-bottom: 30px;
    font-style: italic;
    font-size: 1.2rem;
}


/* 按钮设计 */

.explore-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 5px;
    position: relative;
    padding: 15px 0;
}

.btn-line {
    width: 50px;
    height: 2px;
    background: #0051ff;
    margin-top: 10px;
    transition: width 0.3s ease;
}

.explore-btn:hover .btn-line {
    width: 150px;
}


/* S3 陆沉专属样式 */

.s3 {
    background: url(../imges/2.png);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.container-3 {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}


/* 背景滚动文字 */

.scrolling-text-bg {
    position: absolute;
    top: 10%;
    left: -5%;
    font-size: 12vw;
    font-weight: 900;
    color: rgb(139, 0, 0);
    /* 极浅的暗红 */
    white-space: nowrap;
    pointer-events: none;
    font-family: serif;
}

.evan-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}


/* 视觉框架 */

.evan-visual {
    flex: 1;
    position: relative;
}

.frame-outer {
    position: relative;
    width: 450px;
    height: 600px;
    padding: 20px;
}

.frame-inner {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

.evan-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gold-border {
    position: absolute;
    top: 0;
    right: -15px;
    bottom: -15px;
    left: 15px;
    border: 1px solid #8b0000;
    z-index: -1;
    transition: all 0.5s ease;
}


/* 文字部分排版 */

.evan-details {
    flex: 1;
    color: #707070;
}

.evan-name {
    font-size: 4.5rem;
    font-family: "zh-font", serif;
    color: #fff;
    margin-bottom: 10px;
}

.evan-name small {
    font-size: 1.5rem;
    color: #8b0000;
    margin-left: 15px;
}

.red-line {
    width: 80px;
    height: 3px;
    background: #8b0000;
    margin: 20px 0;
}

.evan-data {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.data-row {
    border-bottom: 1px solid rgba(139, 0, 0, 0.938);
    padding-bottom: 5px;
}

.d-label {
    display: block;
    font-size: 12px;
    color: #4d4d4d;
    margin-bottom: 5px;
}

.d-value {
    font-weight: bold;
    color: #fff;
}

.evan-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #1d1c1c;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 2px solid #8b0000;
}


/* 棋子按钮交互 */

.chess-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid #8b0000;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
}

.chess-btn:hover {
    color: #fff;
}

.ink-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #8b0000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.chess-btn:hover .ink-blob {
    width: 300px;
    height: 300px;
}


/* S4 齐司礼专属：清冷禅意风格 */

.s4 {
    background: url(../imges/2-f.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.container-4 {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.sariel-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}


/* 垂直侧边文字 */

.sariel-side-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #999;
    padding-top: 50px;
}

.vertical-tag {
    font-size: 0.9rem;
    letter-spacing: 5px;
}

.identity-line {
    height: 100px;
    width: 1px;
    background: #ccc;
    margin: 20px auto;
}


/* 核心立绘：不规则形状与圆 */

.sariel-main-visual {
    position: relative;
    width: 500px;
}

.glass-container {
    width: 100%;
    height: 500px;
    clip-path: polygon(10% 0, 100% 0%, 90% 100%, 0% 100%);
    /* 菱形切片感 */
    overflow: hidden;
    position: relative;
    z-index: 2;
    border-left: 1px solid rgba(255, 255, 255, 0.8);
}

.sariel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(0.2) brightness(1.05);
}

.circle-deco {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 6px dashed #ebfccd;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}


/* 右侧信息排版 */

.sariel-info {
    padding-top: 100px;
}

.sariel-zh {
    font-size: 5rem;
    color: #333;
    font-family: "zh-font";
}

.sariel-en {
    color: #bfa17a;
    /* 浅金偏木色 */
    font-size: 1.2rem;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.sariel-stats {
    display: flex;
    margin: 40px 0;
    gap: 60px;
}

.stat-box .num {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    color: #333;
}

.stat-box .label {
    font-size: 0.7rem;
    color: #aaa;
}

.sariel-desc {
    max-width: 400px;
    line-height: 2;
    color: #666;
    margin-bottom: 50px;
}


/* 极简按钮 */

.hollow-btn {
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    letter-spacing: 3px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #333;
    padding: 12px 30px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.hollow-btn:hover {
    background: #333;
    color: #fff;
    padding-left: 45px;
}


/* S5 查理苏 专属样式 */

.s5 {
    background: url(../imges/2.png) no-repeat center;
    background-size: cover;
    /* 深灰底色 */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: 100%;
}

.container-5 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}


/* 背景流动大文字 */

.luxury-bg-text {
    position: absolute;
    top: 10%;
    left: -5%;
    font-size: 10rem;
    font-weight: 900;
    color: rgb(235, 208, 76);
    white-space: nowrap;
    transform: rotate(-5deg);
    pointer-events: none;
}

.charlie-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}


/* 视觉区域：菱形错位叠层 */

.charlie-visual {
    flex: 1;
    position: relative;
    height: 600px;
}

.diamond-frame {
    position: absolute;
    overflow: hidden;
    /* 核心：将矩形变为平行四边形/菱形质感 */
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.main-frame {
    width: 400px;
    height: 500px;
    z-index: 3;
    top: 50px;
    opacity: 1;
    left: 50px;
    border: 1px solid rgba(184, 134, 11, 0.3);
}

.charlie-img {
    width: 110%;
    /* 稍微放大以留出偏移空间 */
    height: 100%;
    object-fit: cover;
    transform: skew(0deg);
    opacity: 1;
    /* 抵消外层变形如果需要 */
}

.sub-frame-1 {
    width: 380px;
    height: 480px;
    background: rgba(184, 134, 11, 0.1);
    z-index: 2;
    top: 20px;
    left: 80px;
}

.sub-frame-2 {
    width: 420px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1;
    top: 80px;
    left: 20px;
}


/* 右侧内容样式 */

.charlie-content {
    flex: 1;
    color: #fff;
}

.identity-badge {
    display: inline-block;
    padding: 5px 20px;
    background: #b8860b;
    /* 琥珀金 */
    color: #000;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 20px;
    transform: skew(-15deg);
}

.charlie-name {
    font-size: 4.5rem;
    font-family: 'zh-font';
    margin-bottom: 30px;
}

.charlie-name .en-name {
    display: block;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 10px;
    text-transform: uppercase;
    margin-top: 10px;
}


/* 医疗报告风格的数据栏 */

.medical-report {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #b8860b;
    padding: 20px;
    margin-bottom: 40px;
}

.report-header {
    font-size: 0.8rem;
    color: #b8860b;
    margin-bottom: 15px;
    opacity: 0.8;
}

.report-body {
    display: flex;
    gap: 40px;
}

.r-label {
    display: block;
    font-size: 0.7rem;
    color: #888;
}

.r-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.charlie-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    color: #d4af37;
}

.charlie-bio {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #aaa;
    max-width: 500px;
}


/* 奢华按钮 */

.luxury-btn {
    margin-top: 40px;
    padding: 15px 50px;
    background: transparent;
    border: 1px solid #b8860b;
    color: #b8860b;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.luxury-btn:hover {
    background: #b8860b;
    color: #000;
    box-shadow: 0 0 30px rgba(184, 134, 11, 0.4);
}


/* S6 夏鸣星 专属样式 */

.s6 {
    background: url(../imges/2-f.png) no-repeat center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theatre-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    gap: 50px;
    align-items: center;
}


/* 舞台聚光灯效果 */

.stage-left {
    flex: 1;
    position: relative;
    height: 400px;
}

.spotlight {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 500px;
    background: radial-gradient(ellipse at top, rgba(255, 183, 0, 0.3) 0%, transparent 70%);
    clip-path: polygon(40% 0, 60% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.jesse-main-wrapper {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}

.jesse-img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 166, 0, 0.404));
}


/* 票根设计 */

.info-ticket {
    flex: 1;
    background: #fff;
    color: #333;
    padding: 0;
    border-radius: 10px;
    position: relative;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    /* 模拟票根的圆孔裁切 */
    mask-image: radial-gradient(circle at 100% 75%, transparent 20px, black 21px), radial-gradient(circle at 0% 75%, transparent 20px, black 21px);
}

.ticket-header {
    background: #ff9d00;
    padding: 30px;
    color: #ad2e2e;
}

.performer-tag {
    font-size: 0.8rem;
    border: 1px solid #fff;
    display: inline-block;
    padding: 2px 8px;
    margin-bottom: 10px;
}

.jesse-title {
    font-size: 4rem;
    font-family: 'zh-font';
}

.jesse-title small {
    font-size: 1.5rem;
    opacity: 0.8;
}

.ticket-body {
    padding: 40px 30px;
}

.data-strip {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px dashed #ddd;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.d-label {
    display: block;
    font-size: 12px;
    color: #999;
}

.d-value {
    font-weight: bold;
    font-size: 1.2rem;
    color: #ff9d00;
}

.script-quote {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.ticket-stub {
    padding: 30px;
    background: #f9f9f9;
    border-top: 2px solid #eee;
    text-align: center;
    position: relative;
}

.stub-line {
    border-top: 2px dashed #ccc;
    position: absolute;
    top: 75%;
    left: 0;
    width: 100%;
}

.admit-one {
    background: #333;
    color: #ff9d00;
    border: none;
    padding: 15px 40px;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    width: fit-content;
    text-decoration: none;
}

.admit-one a {
    color: #fff;
}

.admit-one span {
    color: #fff;
    line-height: 1;
}

.admit-one svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.admit-one:hover {
    background: #ff9d00;
    color: #fff;
    transform: scale(1.05);
}


/* 左侧导航栏容器 */

.side-nav {
    position: fixed;
    right: 40px;
    /* 截图中小圆点距左侧距离，保持不变 */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    /* 确保在最上层 */
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* 图标之间的间距 */
}


/* 垂直装饰线（可选，模仿截图） */

.side-nav::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    /* 浅色线 */
    z-index: -1;
    transform: translateX(-50%);
}

.nav-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    /* 如果你把 .nav-item 变成了 <a> 标签 */
}


/* 图标容器样式 */

.nav-icon {
    width: 40px;
    /* 根据图标大小调整 */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* 默认状态可以不加背景 */
    background: transparent;
    transition: all 0.3s ease;
}


/* 如果使用本地图片 */

.nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 保持图片比例 */
    transition: all 0.3s ease;
}


/* 如果使用 FontAwesome 字体图标 */

.nav-icon i,
.nav-icon svg {
    color: #fff;
    /* 图标颜色 */
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}


/* 文本标签 */

.nav-label {
    margin-left: 20px;
    color: #fff;
    font-size: 14px;
    font-family: Arial, sans-serif;
    /* 根据需要修改字体 */
    opacity: 0;
    /* 默认隐藏 */
    transform: translateX(-15px);
    /* 默认偏左 */
    transition: all 0.3s ease;
    white-space: nowrap;
    /* 不换行 */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    /* 增加可读性 */
}


/* ============================
   激活与悬停状态 (Active/Hover)
   ============================ */


/* 1. 悬停或激活时显示文字标签 */

.nav-item:hover .nav-label,
.nav-item.active .nav-label {
    opacity: 1;
    transform: translateX(0);
    /* 文字复位 */
}


/* 2. 悬停或激活时的图标效果 */

.nav-item.active .nav-icon,
.nav-item:hover .nav-icon {
    /* 如果你想让图标发光或加个背景 */
    background: rgba(255, 157, 0, 0.2);
    /* 浅橙色背景 */
    box-shadow: 0 0 15px rgba(255, 157, 0, 0.6);
    /* 橙色发光 */
    transform: scale(1.1);
    /* 略微放大 */
}


/* 3. 如果是用图片，激活时可以加滤镜或阴影 */

.nav-item.active .nav-icon img {
    filter: drop-shadow(0 0 5px #ff9d00);
}


/* 4. 如果是用字体图标，激活时改变图标颜色 */

.nav-item.active .nav-icon i,
.nav-item:hover .nav-icon i,
.nav-item.active .nav-icon svg,
.nav-item:hover .nav-icon svg {
    color: #ff9d00;
    /* 你的主题橙色 */
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 1200px) {
    .container {
        gap: 24px;
    }

    .info-se {
        width: 360px;
    }

    .zh-title {
        font-size: 2.8rem;
        letter-spacing: 10px;
        margin-top: -20px;
    }

    .bg-text {
        font-size: 10rem;
    }

    .character-card,
    .evan-layout,
    .sariel-wrapper,
    .charlie-wrapper,
    .theatre-container {
        gap: 36px;
    }
}

@media (max-width: 992px) {
    .section {
        min-height: 100vh;
        height: auto;
        padding: 70px 0;
    }

    .container,
    .container-2,
    .container-3,
    .container-4,
    .container-5,
    .theatre-container {
        width: min(92%, 960px);
    }

    .container {
        flex-direction: column;
        height: auto;
    }

    .image-grid {
        width: 100%;
        max-width: 720px;
        height: 420px;
    }

    .character-card,
    .evan-layout,
    .sariel-wrapper,
    .charlie-wrapper,
    .theatre-container {
        grid-template-columns: 1fr;
        display: grid;
    }

    .info-ticket {
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }

    .side-nav {
        right: 14px;
        gap: 18px;
    }

    .nav-label {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-border {
        display: none;
    }

    .section {
        padding: 56px 0 72px;
    }

    .info-se {
        width: min(78vw, 300px);
        margin-bottom: 16px;
    }

    .zh-title {
        font-size: 2rem;
        letter-spacing: 6px;
        margin-top: -8px;
    }

    .line {
        margin: 14px 0;
    }

    .quote,
    .cv,
    .desc-text,
    .evan-biography,
    .sariel-desc,
    .charlie-bio,
    .script-quote {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .bg-text,
    .scrolling-text-bg,
    .luxury-bg-text {
        font-size: 3rem !important;
        opacity: 0.08;
    }

    .main-char-img,
    .frame-outer,
    .glass-container,
    .main-frame {
        max-width: 100%;
    }

    .charlie-name,
    .jesse-title,
    .evan-name,
    .sariel-zh {
        font-size: 2.2rem !important;
    }

    .en-title,
    .en-name,
    .sub-title,
    .sariel-en,
    .report-header,
    .performer-tag {
        font-size: 0.8rem !important;
        letter-spacing: 2px !important;
    }

    .quote,
    .cv,
    .desc-text,
    .evan-biography,
    .sariel-desc,
    .charlie-bio,
    .script-quote,
    .evan-quote,
    .charlie-quote {
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
    }

    .value,
    .d-value,
    .r-value,
    .num {
        font-size: 1.05rem !important;
    }

    .label,
    .d-label,
    .r-label {
        font-size: 0.72rem !important;
    }

    .report-body,
    .data-strip,
    .sariel-stats {
        flex-wrap: wrap;
        gap: 14px;
    }

    .side-nav {
        right: 50%;
        bottom: 12px;
        top: auto;
        transform: translateX(50%);
        flex-direction: row;
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 999px;
        padding: 8px 10px;
        backdrop-filter: blur(8px);
    }

    .side-nav::before {
        display: none;
    }

    .nav-icon {
        width: 34px;
        height: 34px;
    }

    .nav-icon svg,
    .nav-icon i {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 48px 0 78px;
    }

    .container,
    .container-2,
    .container-3,
    .container-4,
    .container-5,
    .theatre-container {
        width: 94%;
    }

    .zh-title {
        font-size: 1.7rem;
        letter-spacing: 3px;
    }

    .charlie-name,
    .jesse-title,
    .evan-name,
    .sariel-zh {
        font-size: 1.8rem !important;
    }

    .jesse-title small,
    .evan-name small {
        font-size: 1rem !important;
    }

    .quote,
    .cv,
    .desc-text,
    .evan-biography,
    .sariel-desc,
    .charlie-bio,
    .script-quote,
    .evan-quote,
    .charlie-quote {
        font-size: 0.84rem !important;
        line-height: 1.6 !important;
    }

    .tag-row .tag,
    .identity-badge,
    .explore-btn,
    .chess-btn,
    .hollow-btn,
    .luxury-btn,
    .admit-one {
        font-size: 0.78rem !important;
        letter-spacing: 1px !important;
    }

    .info-se {
        width: min(68vw, 250px);
    }

    .image-grid {
        height: 250px;
        gap: 6px;
    }

    .image-grid .grid-item {
        border-radius: 12px;
    }

    .image-grid .grid-item img {
        border-radius: 12px;
    }

    .info-panel,
    .evan-details,
    .sariel-info,
    .charlie-content,
    .info-ticket {
        padding: 0 2px;
    }

    .explore-btn,
    .luxury-btn,
    .admit-one,
    .hollow-btn {
        width: 100%;
        justify-content: center;
    }

    .ticket-stub {
        padding: 18px 14px 16px;
    }

    .stub-line {
        top: 0;
    }

    .admit-one {
        min-height: 44px;
        padding: 12px 14px;
        border-radius: 10px;
        letter-spacing: 1px;
        gap: 8px;
        font-size: 0.9rem;
    }

    .admit-one svg {
        width: 18px;
        height: 18px;
    }

    /* 强制覆盖移动端图片尺寸与定位，避免被桌面端固定值锁死 */
    .main-char-img {
        height: 240px !important;
    }

    .main-char-img img {
        width: 50% !important;
        object-fit: cover !important;
    }

    .frame-outer {
        width: 100% !important;
        height: 320px !important;
        padding: 10px !important;
        margin: 0 auto;
    }

    .gold-border {
        right: -8px;
        bottom: -8px;
        left: 8px;
    }

    .sariel-main-visual {
        width: 100% !important;
        max-width: 320px;
        margin: 0 auto;
    }

    .glass-container {
        height: 320px !important;
    }

    .circle-deco {
        width: 320px !important;
        height: 320px !important;
        border-width: 3px;
    }

    .charlie-visual {
        width: 100%;
        max-width: 320px;
        height: 420px !important;
        margin: 0 auto;
    }

    .main-frame {
        width: 260px !important;
        height: 340px !important;
        left: 20px !important;
        top: 36px !important;
    }

    .sub-frame-1 {
        width: 248px !important;
        height: 320px !important;
        left: 40px !important;
        top: 20px !important;
    }

    .sub-frame-2 {
        width: 280px !important;
        height: 360px !important;
        left: 8px !important;
        top: 56px !important;
    }

    .stage-left {
        height: 300px !important;
    }

    .spotlight {
        width: 260px !important;
        height: 320px !important;
    }

    .jesse-main-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .jesse-img {
        height: 280px !important;
        object-fit: contain;
    }

    .info-ticket {
        width: 100% !important;
        border-radius: 12px;
    }
}