/* #region  ==================== 1. 全局设计变量 & 先锋动效定义 ==================== */
/* #region 全局  */
:root {
  --nav-bg: rgba(13, 13, 13, 0.65);         /* 导航栏半透明背景 */
  --nav-text: #ffffff;                       /* 文字颜色 */
  --nav-text-muted: rgba(255, 255, 255, 0.6); /* 次要文字颜色 */
  --accent-color: #deadc6;                    /* 原站粉紫亮色 */
  --champagne-gold: #e5cdab;                  /* 镜头微光香槟金 */
  --dark-bg: #09090b;                         /* 极简深色背景 */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100vh;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg); 
    color: #e4e4e7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column; 
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}
/* #endregion */

/* #region 胶片颗粒 */
/* 胶片颗粒感图层 */
.film-grain {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}
/* #endregion */


/* #region  入场与动态动画  */
/* ==================== 2. 入场与动态动画 (Keyframes) ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 0.3; }
}

.animate-fade-in {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.animate-slide-up-delay {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}
/* #endregion */


/* #region 导航栏  */
/* ==================== 3. 导航栏 (完全保留原样式) ==================== */
.global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-logo a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}
:lang(zh-CN).nav-logo a { letter-spacing: 1px; }
:lang(en).nav-logo a { letter-spacing: 2px; }

.nav-links {
    margin-left: auto;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-left: 30px;
    transition: color 0.3s ease;
}
.nav-links a:hover, 
.nav-links a.active {
    color: #ffffff;
}

.lang-toggle { 
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 4px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    /*按钮多圆*/
    border-radius:900px;
    transition: all 0.3s ease;
    margin-left: 15px;
    vertical-align: middle;
}
.lang-toggle:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}
/* #endregion */

/* #region 中英文切换逻辑  */
/* ==================== 4. 中英文切换逻辑 ==================== */
.lang-zh { display: block; }
.lang-en { display: none; }   
body.en-mode .lang-zh { display: none !important; }   
body.en-mode .lang-en { display: block; }   

span.lang-zh { display: inline; }
span.lang-en { display: none; }
body.en-mode span.lang-zh { display: none !important; }
body.en-mode span.lang-en { display: inline; }
/* #endregion */



/* #region 极简主体排版  */
/* ==================== 5. 极简主体排版与交互 ==================== */
.about-container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 150px 30px 100px 30px;
    flex: 1;
}

.cinema-hero-header {
    margin-bottom: 60px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: var(--champagne-gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--champagne-gold);
    border-radius: 50%;
    animation: pulseDot 2s infinite ease-in-out;
}

.hero-main-title {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-size: 5.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffffa8;
    line-height: 1.05;
    
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
}

/* #endregion */



/* #region 双栏响应式网格  */
/* 双栏响应式网格 */
.cinema-about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 70px;
    align-items: start;
}
/* #endregion */


/* #region 左侧肖像 */
/* 左侧肖像 - 悬浮快门动效 */
.cinema-portrait-box {
    position: sticky;
    top: 130px;
}

.portrait-shutter-container {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    background: #121215;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(30%) contrast(105%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.lens-glow-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: skewX(-25deg);
    transition: left 0.8s ease;
}

.portrait-shutter-container:hover .profile-image {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(100%);
}

.portrait-shutter-container:hover .lens-glow-overlay {
    left: 150%;
}
/* #endregion */


/* #region 右侧正文  */
/* 右侧正文 & 交互标签 */
.manifesto-quote {
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif;
    font-size: 1.75rem;
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    padding-left: 24px;
    border-left: 2px solid var(--champagne-gold);
    margin-bottom: 35px;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.manifesto-quote:hover {
    border-color: #ffffff;
    transform: translateX(4px);
}

.cinema-spec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.spec-pill {
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: default;
}

.spec-pill:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.narrative-paragraphs p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 22px;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-align: left;
    transition: color 0.3s ease;
}

.narrative-paragraphs p:hover {
    color: rgba(255, 255, 255, 0.9);
}

.narrative-paragraphs .first-lead-p {
    font-size: 1.18rem;
    color: rgba(255, 255, 255, 0.88);
}

.narrative-paragraphs p b, 
.narrative-paragraphs p strong {
    color: #ffffff;
    font-weight: 500;
}
/* #endregion */

/* #region  尾幕宣言与磁性按钮  */
/* 尾幕宣言与磁性按钮 */
.cinema-closing-block {
    margin-top: 90px;
    text-align: center;
}

.statement-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 10px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 60px;
}

.statement-title .lang-en {
   
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 10px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 60px;
}


.cinema-magnet-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 12px;
    letter-spacing: 3px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.cinema-magnet-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
/* #endregion */
/* #endregion */

/* #endregion */


/* #region 固定社交 Icon 栏   */
/* ==================== 6. 固定社交 Icon 栏 (完全保留原样式) ==================== */
.social-bar {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(20, 20, 20, 0.7);
  padding: 0.6rem 1.6rem;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 9998;
}

.social-link {
  color: var(--nav-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}
/* #endregion */



/* #region Footer   */
/* ==================== 7. 页脚 Footer (完全保留原样式) ==================== */
.resume-footer {
  padding: 20px 50px 30px 50px;
  margin-top: auto;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.01) 100%);
  margin-bottom: 12px;
}

.footer-left-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  white-space: nowrap;
}

.footer-email-link {
  font-size: 13.5px;
  color: #fefefeb3;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer-email-link:hover {
  border-bottom-color: rgba(255,255,255,0.6);
}

.email-icon {
  width: 11px;
  height: 11px;
  margin-right: 8px;
}

.footer-left-content .f-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  display: inline-block;
}
/* #endregion */


/* #region 手机  */
/* ==================== 8. 响应式适配 ==================== */
@media (max-width: 992px) {
    .cinema-about-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .cinema-portrait-box {
        position: relative;
        top: 0;
        max-width: 380px;
        margin: 0 auto;
    }
    .hero-main-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .global-nav {
        padding: 10px 15px; 
        flex-wrap: wrap; 
        justify-content: space-between;
    } 
 /* 手机端导航 LOGO 微调 */
    .nav-logo a { display: flex; align-items: center; justify-content: center; }   
    :lang(zh-CN) .nav-logo a,
    :lang(en) .nav-logo a {  font-size: 8px; letter-spacing: 1px; margin-left: 0px; }

    .nav-links {  display: flex !important; /* 强制保持原导航显示状态 */  flex-wrap: wrap;  align-items: center; text-align: justify; }
    :lang(zh-CN) .nav-links a { font-size: 13px;   margin-left: 16px; }
    :lang(en) .nav-links a { font-size: 12px; margin-left: 8px; }
    .lang-toggle { margin-left: 8px; padding: 2px 6px; font-size: 10px; }
    
    .about-container { padding-top: 110px; padding-left: 20px; padding-right: 20px; }
    .hero-main-title { font-size: 2.4rem; letter-spacing: 2px; }
    .manifesto-quote { font-size: 1.3rem; padding-left: 16px; }
    .statement-title { font-size: 1.8rem; letter-spacing: 5px; }
    
    
    .social-bar {
        bottom: 0.5rem; gap: 0.8rem;
        max-width: calc(100vw - 18px);
        gap: .5rem;
        padding: .45rem .75rem;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .social-bar::-webkit-scrollbar {
        display: none;
    }

    .social-link {
        flex: 0 0 auto;
        font-size: .70rem;
    }

    .social-bar svg {
        width: 14px;
        height: 17px;
    }



    .footer-left-content { 
        flex-direction: column !important; 
        align-items: flex-start !important; 
        gap: 8px !important; 
        white-space: normal !important;
        padding-top: 1px;  padding-bottom: 60px;
    }       .footer-email-link { 
            font-size: 11px; 
        }
        .footer-left-content .f-name { 
        font-size: 9px; 
        letter-spacing: 1px; 
    }
    
} 
/* #endregion */