/* ===================================================================
   Warren Station — Muse × Apple Design System v2
   Variables are in tokens.css
   =================================================================== */

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-cn);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ===== NAVIGATION ===== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 3.5rem 0 4.5rem; height: 60px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(0,0,0,0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
nav.scrolled {
    background: rgba(0,0,0,0.92);
    border-bottom-color: rgba(255,255,255,0.08);
}

.nav-logo {
    display: flex; align-items: center; gap: 0.6rem;
    text-decoration: none; transition: var(--transition-fast);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
    height: 34px; width: auto;
    object-fit: contain;
}
.nav-logo-text {
    font-family: var(--font-en);
    font-size: 0.95rem; font-weight: 600;
    letter-spacing: 0.12em; color: var(--text);
    white-space: nowrap;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    color: var(--text2); text-decoration: none;
    font-size: 0.88rem; font-weight: 400;
    transition: var(--transition-fast); position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 50%;
    width: 0; height: 1.5px; background: var(--accent);
    transition: all 0.3s ease; transform: translateX(-50%);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Nav Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav-dropdown-arrow { transition: transform 0.2s ease; }
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 140px;
    background: rgba(20,20,20,0.96);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0; visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li { padding: 0; }
.nav-dropdown-menu a {
    display: block; padding: 0.5rem 1.2rem;
    font-size: 0.82rem !important; color: var(--text2) !important;
    white-space: nowrap; transition: all 0.15s ease;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover {
    color: var(--text) !important; background: rgba(255,255,255,0.04);
}
.nav-dropdown-menu li:first-child a {
    color: var(--accent) !important; font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 0.2rem; padding-bottom: 0.6rem;
}

.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 22px; height: 16px; position: relative;
}
.nav-toggle span {
    display: block; width: 100%; height: 1.5px; background: var(--text);
    position: absolute; left: 0; transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 7px; }
.nav-toggle span:nth-child(3) { top: 14px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg); top: 7px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg); top: 7px; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.55) contrast(1.1) saturate(0.85);
    transform: scale(1.05);
    animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.05) 30%,
        rgba(0,0,0,0.25) 55%,
        rgba(0,0,0,0.7) 75%,
        #000 90%
    );
}
.hero-particles {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-particles canvas { width: 100%; height: 100%; }
.hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 0 2rem; max-width: 900px;
}
.hero-title { margin-bottom: 2rem; position: relative; }
.hero-logo-img {
    position: absolute; top: -10px; left: -80px;
    width: 64px; height: auto;
    object-fit: contain; opacity: 0.9;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.hero-en {
    display: block; font-family: var(--font-en);
    font-size: clamp(3.5rem, 12vw, 10rem);
    font-weight: 700; letter-spacing: -0.03em; line-height: 0.88;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.5) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-cn {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600; letter-spacing: 0.5em;
    color: #f5f5f7; margin-top: 1.2rem;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.55); font-weight: 400;
    line-height: 2; max-width: 520px; margin: 0 auto 2.5rem;
}
.hero-subtitle em { font-style: normal; color: var(--accent); font-weight: 600; }

.hero-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-actions-3 { gap: 1rem; }

.hero-scroll {
    position: absolute; bottom: 2.5rem; left: 50%;
    transform: translateX(-50%); z-index: 2;
    display: flex; flex-direction: column; align-items: center;
    color: var(--text3); font-size: 0.6rem;
    letter-spacing: 0.25em; font-family: var(--font-en);
}
.scroll-line {
    width: 1px; height: 32px;
    background: linear-gradient(180deg, var(--text3), transparent);
    margin-top: 0.5rem;
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.15; transform: scaleY(0.7); }
    50% { opacity: 0.6; transform: scaleY(1.3); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.8rem 1.8rem; border-radius: 980px;
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.02em; text-decoration: none;
    transition: var(--transition); cursor: pointer; border: none;
    white-space: nowrap;
}
.btn-hero { padding: 1rem 2.8rem; font-size: 1rem; min-width: 150px; }
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(232,93,58,0.35);
}
.btn-outline {
    background: transparent; color: var(--text);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.45);
    transform: translateY(-2px);
}
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2.8rem; font-size: 0.95rem; }

/* ===== LAYOUT ===== */
.section { padding: 6rem 2rem; }
.section-dark { background: var(--bg); }
.section-accent { background: var(--bg2); }
.container { max-width: 980px; margin: 0 auto; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-header { margin-bottom: 3rem; }
.section-tag {
    font-family: var(--font-en);
    font-size: 0.62rem; letter-spacing: 0.3em;
    color: var(--accent); text-transform: uppercase;
    display: block; margin-bottom: 0.6rem; font-weight: 500;
}
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700; line-height: 1.2; letter-spacing: -0.01em;
}
.section-spacer { height: 4rem; border-bottom: 1px solid rgba(255,255,255,0.04); margin-bottom: 4rem; }

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 9rem 2rem 3.5rem;
    text-align: center; background: var(--bg);
    position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1px; background: linear-gradient(90deg, transparent, rgba(232,93,58,0.2), transparent);
}
.page-hero-lg { padding: 10rem 2rem 4rem; }
.page-hero-inner { max-width: 600px; margin: 0 auto; }
.page-hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
    background: linear-gradient(180deg, var(--text) 0%, rgba(245,245,247,0.55) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.page-hero-desc {
    font-size: 1rem; color: var(--text2); margin-top: 0.8rem; font-weight: 300;
}

/* 成员详情页 hero 与下方 container 左对齐 */
.page-hero-member-detail { text-align: left; }
.page-hero-member-detail .page-hero-inner {
    max-width: 980px; margin: 0 auto;
}

/* ===== MANIFESTO ===== */
.section-manifesto { background: var(--bg2); padding: 7rem 2rem; }
.manifesto-content { max-width: 650px; margin: 0 auto; text-align: center; }
.manifesto-title {
    font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
    margin-bottom: 1.8rem; letter-spacing: -0.01em;
}
.manifesto-text { color: var(--text2); font-size: 1.08rem; line-height: 2.2; }
.manifesto-text strong { color: var(--text); }

/* ===== PHILOSOPHY ===== */
.philosophy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.philosophy-card {
    padding: 2.2rem; background: var(--bg3);
    border-radius: var(--radius); transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.03); position: relative; overflow: hidden;
}
.philosophy-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--gradient); opacity: 0;
    transition: opacity 0.4s ease;
}
.philosophy-card:hover {
    border-color: rgba(255,255,255,0.06); transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.philosophy-card:hover::before { opacity: 1; }
.philosophy-num {
    font-family: var(--font-en); font-size: 0.7rem;
    color: var(--accent); letter-spacing: 0.1em;
    margin-bottom: 1rem; font-weight: 600;
}
.philosophy-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 600; }
.philosophy-card p { color: var(--text2); font-size: 0.95rem; line-height: 1.9; }

/* ===== SLOGAN ===== */
.section-slogan {
    background: var(--bg); text-align: center; padding: 7rem 2rem;
    position: relative;
}
.section-slogan::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,93,58,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.slogan-text {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 300; color: var(--text2); position: relative;
}
.slogan-text em { font-style: normal; color: var(--text); font-weight: 600; }

/* ===== MEMBER CARD (New Layout) ===== */
.member-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: stretch;
    padding: 3rem 0;
}
.member-card-avatar {
    position: relative;
    width: 200px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg3);
}
.member-card-avatar img {
    width: 100%; display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center center;
}
.member-card-info {
    padding-top: 0.3rem;
    display: flex;
    flex-direction: column;
    max-height: calc(200px * 4 / 3);
    overflow: hidden;
}
.member-card-role {
    font-family: var(--font-en);
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.6rem;
    flex-shrink: 0;
}
.member-card-name {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; margin-bottom: 0.8rem;
    flex-shrink: 0;
}
.member-card .member-profile-tags {
    margin-bottom: 3rem;
    flex-shrink: 0;
}
.member-card-bio {
    flex: 1;
    min-height: 0;
    margin-top: 0;
}
.member-card-bio p {
    color: var(--text2); font-size: 0.92rem; line-height: 1.85;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Name arrow hint */
.member-name-arrow {
    display: inline-block;
    margin-left: 0.35em;
    color: var(--name-arrow-color);
    vertical-align: middle;
    transition: var(--transition-fast);
    position: relative;
    top: -0.08em;
}
.member-name-link:hover .member-name-arrow {
    color: var(--name-arrow-hover-color);
}
/* Bio clickable */
a.member-card-bio,
.member-card-bio {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
}
a.member-card-bio:hover,
.member-card-link-wrapper:hover .member-card-bio {
    opacity: 0.75;
}

/* Entire card clickable wrapper */
.member-card-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition-fast);
}
.member-card-link-wrapper:hover .member-name-link {
    color: var(--accent);
}
.member-card-link-wrapper:hover .member-name-arrow {
    color: var(--name-arrow-hover-color);
}

/* ===== MEMBER CARD V2 (role above image) ===== */
.member-card-v2 {
    padding: 3rem 0;
}
.member-card-v2-role {
    font-family: var(--font-en);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    white-space: nowrap;
}
.member-card-v2-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: start;
}
.member-card-v2-avatar {
    position: relative;
    width: 200px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg3);
}
.member-card-v2-avatar img {
    width: 100%; display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}
.member-card-v2-info {
    padding-top: 0.3rem;
}
.member-card-v2-name {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; margin-bottom: 0.8rem;
}

/* Legacy compat — keep old classes working */
.member-profile {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 3rem 0;
}
.member-profile-avatar {
    width: 180px; height: 180px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg3);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.member-profile-avatar img {
    width: 100%; height: 100%; object-fit: cover;
}
.member-profile-initial {
    font-size: 4rem; font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-profile-role {
    font-family: var(--font-en);
    font-size: 0.68rem; color: var(--accent);
    letter-spacing: 0.2em; text-transform: uppercase;
    font-weight: 500; margin-bottom: 0.4rem;
}
.member-profile-name {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; margin-bottom: 1rem;
}
.member-name-link {
    color: inherit; text-decoration: none;
    transition: var(--transition-fast);
}
.member-name-link:hover { color: var(--accent); }
.member-name-en {
    font-family: var(--name-hero-en-font);
    font-size: var(--name-card-en-size);
    font-weight: var(--name-card-en-weight);
    font-style: var(--name-en-style);
    color: var(--name-card-en-color);
    letter-spacing: var(--name-en-spacing);
    margin-left: 0.1em;
}

.member-profile-tags {
    display: flex; flex-wrap: wrap; gap: 0.45rem;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}
.tag-pill {
    padding: 0.28rem 0.75rem;
    background: rgba(255,255,255,0.05);
    border: none;
    border-radius: 6px;
    font-size: 0.73rem; color: var(--text3);
    letter-spacing: 0.03em;
    cursor: default;
    user-select: none;
    pointer-events: none;
}

.member-profile-bio {
    min-height: 0;
}
.member-profile-bio p {
    color: var(--text2); font-size: 0.92rem; line-height: 1.85;
    margin: 0;
}
.member-bio-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}
.member-bio-text.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}
.member-bio-toggle {
    display: inline-block; margin-top: 0.5rem;
    font-size: 0.82rem; color: var(--accent);
    cursor: pointer; border: none; background: none;
    font-family: inherit; padding: 0;
    transition: var(--transition-fast);
}
.member-bio-toggle:hover { opacity: 0.75; }

.member-profile-gallery {
    display: flex; gap: 0.8rem; margin-top: 1.5rem; overflow-x: auto;
    padding-bottom: 0.5rem;
}
.gallery-thumb {
    width: 120px; height: 120px; flex-shrink: 0;
    border-radius: var(--radius-xs); overflow: hidden;
}
.gallery-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-thumb:hover img { transform: scale(1.05); }

.member-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

/* ===== MEMBER DETAIL ===== */
.member-hero-title {
    font-family: var(--name-hero-cn-font);
    font-size: var(--name-hero-cn-size) !important;
    font-weight: var(--name-hero-cn-weight);
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.member-hero-name-en-inline {
    font-family: var(--name-hero-en-font);
    font-size: var(--name-hero-en-size);
    font-weight: var(--name-hero-en-weight);
    font-style: var(--name-en-style);
    color: var(--name-hero-en-color);
    letter-spacing: var(--name-en-spacing);
}
.member-hero-name-en {
    font-family: var(--font-en);
    font-size: 1rem; font-weight: 300;
    font-style: italic;
    color: var(--text3); letter-spacing: 0.1em;
    margin-top: 0.3rem;
}
.member-detail-name-en-italic {
    display: block;
    font-family: var(--font-en);
    font-size: 0.9rem; font-weight: 300;
    font-style: italic;
    color: var(--text3); letter-spacing: 0.06em;
    margin-top: -0.5rem; margin-bottom: 1rem;
}
.member-detail-hero {
    display: flex; align-items: stretch; gap: 2.5rem;
    margin-bottom: 4rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.member-detail-avatar {
    width: 240px; flex-shrink: 0;
    border-radius: 20px; overflow: hidden;
    background: var(--bg3);
}
.member-detail-avatar img {
    width: 100%; display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center center;
}
.member-detail-info { flex: 1; padding-top: 1rem; display: flex; flex-direction: column; }
.member-detail-name {
    font-size: var(--name-detail-cn-size);
    font-weight: var(--name-detail-cn-weight);
    margin-bottom: 0.6rem;
    white-space: nowrap;
}
.member-detail-name-en {
    font-family: var(--name-hero-en-font);
    font-size: var(--name-detail-en-size);
    font-weight: var(--name-detail-en-weight);
    font-style: var(--name-en-style);
    color: var(--name-detail-en-color);
    letter-spacing: var(--name-en-spacing);
}
.member-social-links {
    display: flex; gap: 0.6rem; margin-top: auto;
}
.member-social-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 980px;
    color: var(--text2);
    font-size: 0.78rem; font-weight: 500;
    cursor: pointer; transition: var(--transition-fast);
    font-family: inherit;
}
.member-social-btn:hover {
    background: rgba(232,93,58,0.08);
    border-color: rgba(232,93,58,0.3);
    color: var(--accent);
}
.member-detail-section {
    margin-bottom: 4rem;
}
.member-detail-bio p {
    color: var(--text2); font-size: 1.05rem; line-height: 2.2;
}
.member-detail-empty-hint {
    padding: 2rem;
    border: 1px dashed rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    text-align: center;
}
.member-detail-empty-hint p {
    color: var(--text3); font-size: 0.9rem;
}
.member-detail-gallery {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.member-gallery-item {
    aspect-ratio: 1; border-radius: var(--radius-sm);
    overflow: hidden; cursor: pointer;
    transition: transform 0.4s ease;
}
.member-gallery-item:hover { transform: scale(1.02); }
.member-gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.member-gallery-item:hover img { transform: scale(1.06); }
.member-detail-quote blockquote {
    font-size: 1.15rem; color: var(--text2);
    font-weight: 400; line-height: 2;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent);
    font-style: italic;
}
.member-quote-placeholder { color: var(--text3); font-style: normal; }
.member-detail-back {
    text-align: center; padding-top: 2rem;
}

/* ===== ALBUM FEATURE ===== */
.album-feature {
    display: grid; grid-template-columns: 320px 1fr;
    gap: 3.5rem; align-items: start; margin-bottom: 2rem;
}
.album-feature-cover {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    aspect-ratio: 1;
}
.album-feature-cover img { width: 100%; height: 100%; object-fit: cover; }
.album-feature-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--gradient-warm);
    position: relative;
}
.album-feature-placeholder-title {
    font-family: var(--font-en);
    font-weight: 700; font-size: 1.4rem; color: var(--bg);
    letter-spacing: 0.05em;
}
.album-feature-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; margin-bottom: 0.3rem;
}
.album-feature-date { color: var(--text2); font-size: 0.88rem; margin-bottom: 0.8rem; }
.album-feature-desc { color: var(--text2); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.5rem; }
.album-feature-actions {
    display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2rem;
}

/* Tracklist */
.tracklist { margin-top: 0.5rem; }
.tracklist-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-xs);
    transition: var(--transition-fast);
    cursor: default;
}
.tracklist-item:hover { background: rgba(255,255,255,0.03); }
.tracklist-item.active { background: rgba(232,93,58,0.08); }
.tracklist-item.active .tracklist-title { color: var(--accent); }
.tracklist-num {
    font-family: var(--font-en); color: var(--text3);
    font-size: 0.8rem; min-width: 24px; font-weight: 500;
}
.tracklist-title { flex: 1; color: var(--text2); font-size: 0.9rem; }
.tracklist-item:hover .tracklist-title { color: var(--text); }
.tracklist-dur { font-size: 0.78rem; color: var(--text3); font-family: var(--font-en); }
.tracklist-play {
    width: 28px; height: 28px;
    border: none; background: rgba(255,255,255,0.05);
    border-radius: 50%; color: var(--text2);
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    transition: var(--transition-fast); opacity: 0;
}
.tracklist-item:hover .tracklist-play { opacity: 1; }
.tracklist-play:hover { background: var(--accent); color: #fff; }

/* Player Bar */
.player-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 999; height: 64px;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.player-inner {
    max-width: 980px; margin: 0 auto;
    height: 100%; display: flex;
    align-items: center; gap: 2rem; padding: 0 2rem;
}
.player-info { min-width: 180px; }
.player-title { display: block; font-size: 0.85rem; font-weight: 500; }
.player-album { display: block; font-size: 0.72rem; color: var(--text3); }
.player-controls { display: flex; align-items: center; gap: 0.8rem; }
.player-btn {
    background: none; border: none; color: var(--text2);
    cursor: pointer; padding: 0.3rem; transition: var(--transition-fast);
    display: flex; align-items: center;
}
.player-btn:hover { color: var(--text); }
.player-btn-main { color: var(--text); }
.player-progress { flex: 1; }
.player-progress-bar {
    height: 3px; background: rgba(255,255,255,0.1); border-radius: 2px;
    overflow: hidden;
}
.player-progress-fill {
    height: 100%; width: 0%; background: var(--accent);
    border-radius: 2px; transition: width 0.3s;
}

/* ===== MEMORIES STATS ===== */
.memories-stats {
    display: flex; justify-content: center; gap: 4rem;
    margin-bottom: 4rem; padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.memories-stat { text-align: center; }
.memories-stat-num {
    display: block; font-family: var(--font-en);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700; line-height: 1;
    background: var(--gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.memories-stat-label {
    display: block; margin-top: 0.4rem;
    font-size: 0.82rem; color: var(--text3);
    letter-spacing: 0.08em;
}

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 3rem; }
.timeline::before {
    content: ''; position: absolute;
    left: 11px; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--accent), rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent);
}

.timeline-year {
    position: relative; margin-bottom: 1rem; padding-top: 1rem;
}
.timeline-year h2 {
    font-family: var(--font-en);
    font-size: 2.5rem; font-weight: 700;
    color: var(--text); letter-spacing: -0.02em;
    margin-left: -3rem; padding-left: 3rem;
}
.timeline-year::before {
    content: ''; position: absolute;
    left: -3rem; top: 50%;
    width: 22px; height: 22px;
    background: var(--bg); border: 2px solid var(--accent);
    border-radius: 50%; transform: translateY(-50%) translateX(-0.5px);
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}
.timeline-dot {
    position: absolute; left: -3rem; top: 1.5rem;
    width: 8px; height: 8px;
    background: var(--text3);
    border-radius: 50%;
    transform: translateX(3px);
    transition: background 0.3s;
}
.timeline-item:hover .timeline-dot { background: var(--accent); }

.timeline-card {
    background: var(--bg3);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
}
.timeline-card:hover {
    border-color: rgba(255,255,255,0.06);
    transform: translateX(4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.timeline-card-cover {
    width: 100%; max-height: 280px; overflow: hidden;
}
.timeline-card-cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.timeline-card:hover .timeline-card-cover img { transform: scale(1.03); }
.timeline-card-body { padding: 1.5rem 2rem; }
.timeline-card-date {
    display: flex; align-items: baseline; gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.timeline-card-date span:first-child {
    font-family: var(--font-en); font-size: 0.9rem;
    font-weight: 600; color: var(--accent);
}
.timeline-card-weekday { font-size: 0.75rem; color: var(--text3); }
.timeline-card-body h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.timeline-card-venue { font-size: 0.88rem; color: var(--text2); }
.timeline-card-desc { font-size: 0.82rem; color: var(--text3); margin-top: 0.5rem; line-height: 1.7; }
.timeline-card-tag {
    display: inline-block; margin-top: 0.6rem;
    padding: 0.2rem 0.7rem; font-size: 0.68rem;
    background: rgba(232,93,58,0.1); color: var(--accent);
    border-radius: 980px; font-weight: 500;
}

/* Memories empty */
.memories-empty {
    text-align: center; padding: 6rem 2rem;
}
.memories-empty-icon { color: var(--text3); margin-bottom: 1.5rem; }
.memories-empty h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.memories-empty p { color: var(--text3); font-size: 0.95rem; line-height: 1.8; }

/* Timeline card as link */
.timeline-card-link {
    display: block; text-decoration: none; color: inherit; cursor: pointer;
}
.timeline-card-enter {
    display: inline-block; margin-top: 0.8rem;
    font-size: 0.78rem; color: var(--text3);
    transition: var(--transition-fast);
}
.timeline-card-link:hover .timeline-card-enter {
    color: var(--accent); transform: translateX(3px);
}

/* ===== SHOW DETAIL ===== */
.show-detail-info {
    background: var(--bg3); border-radius: var(--radius);
    padding: 2.5rem; border: 1px solid rgba(255,255,255,0.03);
}
.show-detail-meta {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}
.show-detail-meta-item { display: flex; flex-direction: column; gap: 0.3rem; }
.show-detail-meta-label {
    font-family: var(--font-en); font-size: 0.65rem;
    color: var(--accent); letter-spacing: 0.2em;
    text-transform: uppercase; font-weight: 500;
}
.show-detail-meta-value { font-size: 1rem; font-weight: 500; }

.show-detail-section { margin-bottom: 1rem; }

.show-detail-empty {
    text-align: center; padding: 4rem 2rem;
    color: var(--text3); border: 1px dashed rgba(255,255,255,0.06);
    border-radius: var(--radius);
}
.show-detail-empty svg { margin-bottom: 1rem; opacity: 0.4; }
.show-detail-empty p { font-size: 0.95rem; }

/* Photo grid */
.show-photo-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
}
.show-photo-item {
    aspect-ratio: 1; border-radius: var(--radius-xs);
    overflow: hidden; cursor: pointer; position: relative;
}
.show-photo-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.show-photo-item:hover img { transform: scale(1.05); }
.show-photo-item::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(0,0,0,0); transition: background 0.3s;
}
.show-photo-item:hover::after { background: rgba(0,0,0,0.15); }

/* Video grid */
.show-video-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.2rem;
}
.show-video-item video {
    width: 100%; border-radius: var(--radius-xs);
    background: var(--bg3);
}
.show-video-title {
    font-size: 0.85rem; color: var(--text2);
    margin-top: 0.5rem; text-align: center;
}

/* Lightbox */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(20px);
    align-items: center; justify-content: center; padding: 2rem;
    cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 90vw; max-height: 90vh;
    object-fit: contain; border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute; top: 1.5rem; right: 2rem;
    background: none; border: none; color: var(--text2);
    font-size: 2rem; cursor: pointer; transition: var(--transition-fast);
    line-height: 1;
}
.lightbox-close:hover { color: #fff; }

/* ===== ABOUT / BOOKING ===== */
.about-text {
    max-width: 680px;
}
.about-text p {
    color: var(--text2); font-size: 1.05rem; line-height: 2.1;
    margin-bottom: 1rem;
}
.about-text strong { color: var(--text); }
.about-quote {
    color: var(--accent); font-size: 1.15rem; font-weight: 500;
    margin-top: 1.5rem; padding-left: 1.2rem;
    border-left: 2px solid var(--accent);
    font-style: normal;
}

/* Booking card — 居中显示 */
.about-booking-card {
    display: flex; align-items: center; gap: 1.5rem;
    background: var(--bg3); padding: 2rem 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.03);
    max-width: 380px; margin: 0 auto;
    transition: var(--transition);
}
.about-booking-card:hover {
    border-color: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.about-booking-info {
    display: flex; flex-direction: column; gap: 0.2rem;
}
.about-booking-name {
    font-size: 1rem; font-weight: 600; color: var(--text);
}
.about-booking-phone {
    font-family: var(--font-en); font-size: 1.2rem;
    font-weight: 600; letter-spacing: 0.05em;
    white-space: nowrap; color: var(--text);
}
.about-booking-note {
    font-size: 0.75rem; color: var(--text3);
}

/* Contact person cards (legacy compat) */
.contact-cards {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; max-width: 640px; margin: 0 auto;
}
.contact-person-card {
    display: flex; align-items: center; gap: 1.2rem;
    background: var(--bg3); padding: 1.8rem 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
}
.contact-person-card:hover {
    border-color: rgba(255,255,255,0.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.contact-person-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(232,93,58,0.08); border-radius: 12px;
    color: var(--accent);
}
.contact-person-info { display: flex; flex-direction: column; gap: 0.15rem; }
.contact-person-name { font-size: 0.82rem; color: var(--text2); }
.contact-person-phone {
    font-family: var(--font-en); font-size: 1.1rem;
    font-weight: 600; letter-spacing: 0.03em;
    white-space: nowrap;
}
.contact-person-note { font-size: 0.72rem; color: var(--text3); }

/* Social link grid */
.social-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem; max-width: 720px; margin: 0 auto;
}
.social-link-card {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.3rem;
    background: var(--bg3);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none; color: inherit;
}
.social-link-card:hover {
    border-color: rgba(232,93,58,0.2);
    background: rgba(232,93,58,0.04);
    transform: translateY(-2px);
}
.social-link-name { font-size: 0.85rem; font-weight: 500; }
.social-link-card svg {
    color: var(--text3); transition: var(--transition-fast);
}
.social-link-card:hover svg {
    color: var(--accent); transform: translateX(3px);
}

/* ===== EMPTY ===== */
.empty-state { text-align: center; padding: 5rem 2rem; color: var(--text3); font-size: 1rem; }

/* ===== FAN MESSAGE BOARD ===== */
.fan-post-box {
    background: var(--bg3);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 2.5rem;
}
.fan-identity {
    margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.fan-identity-label { font-size: 0.78rem; color: var(--text3); }
.fan-identity-name {
    font-size: 0.88rem; font-weight: 600; color: var(--accent);
    background: rgba(232,93,58,0.08); padding: 0.25rem 0.8rem;
    border-radius: 980px;
}
.fan-form-header { margin-bottom: 1rem; }
.fan-input {
    width: 100%; background: var(--bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xs);
    padding: 0.8rem 1rem; color: var(--text);
    font-family: var(--font-cn); font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none; resize: none;
}
.fan-input::placeholder { color: var(--text3); }
.fan-input:focus { border-color: var(--accent); }
.fan-input-name { max-width: 240px; }
.fan-textarea { margin-bottom: 1rem; min-height: 100px; }
.fan-form-footer {
    display: flex; justify-content: space-between; align-items: center;
}
.fan-form-hint { font-size: 0.72rem; color: var(--text3); }

.fan-flash { margin-bottom: 1.5rem; text-align: center; }
.fan-flash-error { color: #ef5350; font-size: 0.88rem; }

.fan-messages-list { display: flex; flex-direction: column; gap: 0; }

.fan-msg {
    display: flex; gap: 1rem; padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    align-items: flex-start;
}
.fan-msg:last-child { border-bottom: none; }

.fan-msg-avatar {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; color: #fff;
    user-select: none;
}
.fan-msg-avatar-sm { width: 36px; height: 36px; font-size: 0.9rem; }

.fan-msg-body { flex: 1; min-width: 0; }
.fan-msg-meta {
    display: flex; align-items: baseline; gap: 0.8rem;
    margin-bottom: 0.4rem;
}
.fan-msg-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.fan-msg-time { font-size: 0.72rem; color: var(--text3); }
.fan-msg-actions {
    display: inline-flex; gap: 0.3rem; margin-left: auto;
}
.fan-msg-action-btn {
    background: none; border: none; color: var(--text3);
    cursor: pointer; padding: 0.15rem 0.3rem;
    border-radius: 4px; transition: var(--transition-fast);
    display: inline-flex; align-items: center;
}
.fan-msg-action-btn:hover { color: var(--accent); background: rgba(232,93,58,0.08); }
.fan-msg-text {
    color: var(--text2); font-size: 0.9rem; line-height: 1.8;
    word-break: break-word;
}

.fan-msg-compact { padding: 1rem 0; }

.fan-preview-list {
    max-width: 700px; margin: 0 auto;
}

.fan-pagination {
    display: flex; justify-content: center; align-items: center;
    gap: 1.5rem; margin-top: 2.5rem; padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.fan-page-info {
    font-family: var(--font-en); font-size: 0.82rem;
    color: var(--text3); font-weight: 500;
}

.fan-empty {
    text-align: center; padding: 4rem 2rem; color: var(--text3);
}
.fan-empty-icon { margin-bottom: 1.2rem; }
.fan-empty h3 { font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--text2); }
.fan-empty p { font-size: 0.9rem; }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 1px solid rgba(255,255,255,0.04); margin: 3rem 0; }

/* ===== OVERLAY CARD (弹层卡片) ===== */
.overlay-card {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    align-items: center; justify-content: center;
    padding: 2rem;
}
.overlay-card.active { display: flex; }
.overlay-card-inner {
    position: relative;
    background: var(--bg3); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 2.5rem;
    max-width: 420px; width: 100%;
    text-align: center;
    animation: cardSlideUp 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 90vh; overflow-y: auto;
}
.overlay-card-wide {
    max-width: 680px; text-align: left;
}
@keyframes cardSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.overlay-card-close {
    position: absolute; top: 1rem; right: 1.2rem;
    background: none; border: none; color: var(--text3);
    font-size: 1.8rem; cursor: pointer; line-height: 1;
    transition: var(--transition-fast); z-index: 1;
}
.overlay-card-close:hover { color: var(--text); }
.overlay-card-icon {
    color: var(--accent); margin-bottom: 1rem;
}
.overlay-card-title {
    font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem;
}
.overlay-card-desc {
    color: var(--text2); font-size: 0.92rem; line-height: 1.7;
}
.overlay-card-qr {
    margin-top: 1.5rem;
}
.overlay-card-qr img {
    max-width: 180px; margin: 0 auto; border-radius: var(--radius-xs);
}

/* Show card loading */
.show-card-loading {
    text-align: center; padding: 3rem 2rem;
    color: var(--text3); font-size: 0.9rem;
}
.show-card-content .section-header { margin-bottom: 1rem; }
.show-card-content .section-header h2 { font-size: 1.2rem; }

/* Show card hero */
.show-card-hero {
    margin-bottom: 1.5rem; padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.show-card-title {
    font-size: 1.5rem; font-weight: 700; margin: 0.3rem 0 0.4rem;
    line-height: 1.3;
}
.show-card-venue {
    font-size: 0.9rem; color: var(--text2);
}
.show-card-section {
    margin-bottom: 1.5rem;
}
.show-card-section .section-header { margin-bottom: 1rem; }
.show-card-section .section-header h2 { font-size: 1.1rem; }

/* Track intro card */
.overlay-card-track {
    max-width: 520px; text-align: left;
}
.track-card-header {
    margin-bottom: 1rem; padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tracklist-item { cursor: pointer; }

/* ===== FOOTER ===== */
footer {
    padding: 2rem 2rem;
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
}
.footer-inner { max-width: 900px; margin: 0 auto; }
.footer-logo {
    font-family: var(--font-en);
    font-size: 0.82rem; letter-spacing: 0.15em;
    color: var(--text3); margin-bottom: 0.8rem; font-weight: 500;
}
.footer-links {
    display: flex; justify-content: center; gap: 1rem;
    margin-bottom: 1rem; flex-wrap: wrap;
}
.footer-links a {
    color: var(--text3); text-decoration: none;
    font-size: 0.72rem; transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--text3); font-size: 0.68rem; line-height: 1.8; }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0; transform: translateY(25px);
    transition: opacity 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
                transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* ===== ARTICLES BAR (fans page) ===== */
.articles-bar {
    background: var(--bg3);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
}
.articles-bar-header {
    margin-bottom: 1rem;
}
.articles-bar-title {
    font-size: 1.1rem; font-weight: 600; margin-top: 0.3rem;
}
.articles-bar-list {
    display: flex; flex-direction: column; gap: 0.3rem;
}
.article-bar-item {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.5rem 0.6rem;
    border-radius: var(--radius-xs);
    transition: var(--transition-fast);
}
.article-bar-item:hover { background: rgba(255,255,255,0.04); }
.article-bar-date {
    color: var(--text3); font-size: 0.75rem;
    font-family: var(--font-en); font-variant-numeric: tabular-nums;
    min-width: 3rem;
}
.article-bar-name {
    flex: 1; font-size: 0.88rem; color: var(--text);
}
.article-bar-item svg { color: var(--text3); flex-shrink: 0; }

/* ===== POSTS LIST (articles page) ===== */
.posts-list {
    display: flex; flex-direction: column; gap: 1.5rem;
}
.post-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    background: var(--bg3);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
}
.post-card:hover {
    background: var(--bg4);
    transform: translateY(-2px);
}
.post-card-cover {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.post-card-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.post-card:hover .post-card-cover img { transform: scale(1.04); }
.post-card-body {
    padding: 1.5rem 1.5rem 1.5rem 0;
    display: flex; flex-direction: column;
}
/* When no cover image, full-width body */
.post-card:not(:has(.post-card-cover)) {
    grid-template-columns: 1fr;
}
.post-card:not(:has(.post-card-cover)) .post-card-body {
    padding: 1.5rem 2rem;
}
.post-card-meta {
    display: flex; align-items: center; gap: 0.8rem;
    margin-bottom: 0.6rem;
}
.post-card-category {
    font-family: var(--font-en);
    font-size: 0.65rem; color: var(--accent);
    letter-spacing: 0.15em; font-weight: 600;
}
.post-card-date {
    font-family: var(--font-en);
    font-size: 0.72rem; color: var(--text3);
}
.post-card-title {
    font-size: 1.2rem; font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.post-card-excerpt {
    color: var(--text2); font-size: 0.85rem;
    line-height: 1.7; margin-bottom: 0.8rem;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.post-card-read {
    margin-top: auto;
    font-size: 0.78rem; color: var(--text3);
    transition: var(--transition-fast);
}
.post-card:hover .post-card-read { color: var(--accent); }

/* ===== POST DETAIL ===== */
.post-detail { max-width: 720px; margin: 0 auto; }
.post-detail-cover {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 2rem;
}
.post-detail-cover img { width: 100%; display: block; }
.post-detail-content {
    font-size: 1rem; line-height: 2;
    color: var(--text2);
}
.post-detail-content p { margin-bottom: 1.2rem; }
.post-detail-content h2,
.post-detail-content h3 {
    color: var(--text); margin: 2rem 0 1rem; font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav { padding: 0 1.5rem; height: 52px; }
    .nav-logo-text { font-size: 0.8rem; letter-spacing: 0.08em; }
    .nav-logo-img { height: 28px; }
    .nav-toggle { display: block; }
    .nav-links {
        display: none; position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(0,0,0,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column; padding: 1.5rem;
        gap: 1.2rem; text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links.open { display: flex; }

    /* Mobile dropdown: hidden by default, toggled via JS */
    .nav-dropdown-menu {
        position: static; min-width: auto;
        background: transparent; border: none; box-shadow: none;
        backdrop-filter: none; -webkit-backdrop-filter: none;
        transform: none;
        opacity: 0; visibility: hidden;
        max-height: 0; overflow: hidden;
        padding: 0; margin: 0;
        transition: max-height 0.15s ease-out, opacity 0.15s ease-out, visibility 0.15s ease-out;
        text-align: center;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 0; visibility: hidden;
        max-height: 0;
    }
    .nav-dropdown-menu.mobile-open {
        opacity: 1; visibility: visible;
        max-height: 500px; padding: 0.3rem 0;
        transition: max-height 0.2s ease-in, opacity 0.15s ease-in, visibility 0.15s ease-in;
    }
    .nav-dropdown-menu a {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.82rem !important;
        justify-content: center;
    }
    .nav-dropdown-menu li:first-child a {
        border-bottom: none; margin-bottom: 0; padding-bottom: 0.4rem;
    }

    .hero-en { font-size: clamp(2.8rem, 15vw, 5rem); }
    .hero-actions-3 { flex-direction: column; align-items: center; }
    .btn-hero { width: 100%; max-width: 260px; }

    .philosophy-grid { grid-template-columns: 1fr; }

    .member-profile {
        grid-template-columns: 1fr;
        text-align: center; gap: 1.5rem;
    }
    .member-profile-avatar { width: 140px; height: 140px; margin: 0 auto; }
    .member-profile-tags { justify-content: center; }
    .member-profile-bio p { text-align: left; }

    .member-card-v2-body {
        grid-template-columns: 140px 1fr;
        gap: 1.5rem;
    }
    .member-card-v2-avatar { width: 140px; }
    .member-card-v2-role { font-size: 0.8rem; }
    .member-card-v2 { padding: 2rem 0; }

    .member-card { grid-template-columns: 160px 1fr; gap: 1.5rem; }
    .member-card-avatar { width: 160px; }
    .member-card-info { max-height: none; }
    .member-card-role { font-size: 0.65rem; }
    .member-card .member-profile-tags { margin-bottom: 1.5rem; }

    .post-card { grid-template-columns: 1fr; }
    .post-card-cover { aspect-ratio: 16/9; }
    .post-card-body { padding: 1.2rem 1.5rem; }
    .post-card:not(:has(.post-card-cover)) .post-card-body { padding: 1.2rem 1.5rem; }

    .member-detail-hero { flex-direction: column; align-items: center; text-align: center; }
    .member-detail-avatar { width: 180px; }
    .member-detail-info { padding-top: 0; }
    .member-detail-name { white-space: normal; }
    .member-hero-title { white-space: normal; }
    .member-profile-tags { justify-content: center; }
    .member-detail-gallery { grid-template-columns: repeat(2, 1fr); }
    .member-social-links { justify-content: center; }

    .album-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .album-feature-cover { max-width: 280px; margin: 0 auto; }
    .album-feature-actions { justify-content: center; }
    .tracklist-play { opacity: 1; }

    .timeline { padding-left: 2rem; }
    .timeline-year h2 { font-size: 2rem; margin-left: -2rem; padding-left: 2rem; }
    .timeline-year::before { left: -2rem; }
    .timeline-dot { left: -2rem; }

    .social-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: 1fr; max-width: 360px; }
    .memories-stats { gap: 2.5rem; }

    .contact-grid { flex-direction: column; align-items: center; }

    .fan-post-box { padding: 1.5rem; }
    .fan-input-name { max-width: 100%; }
    .fan-form-footer { flex-direction: column; gap: 0.8rem; align-items: flex-start; }
    .fan-form-footer .btn { width: 100%; }
    .fan-msg-avatar { width: 36px; height: 36px; font-size: 0.9rem; }

    .section { padding: 4rem 1.5rem; }
    .page-hero { padding: 7.5rem 1.5rem 2.5rem; }
    .page-hero-lg { padding: 8rem 1.5rem 3rem; }

    .player-inner { gap: 1rem; }
    .player-info { min-width: auto; flex: 1; }
    .player-progress { display: none; }
}

@media (max-width: 480px) {
    .hero-actions-3 .btn-hero {
        max-width: 220px; font-size: 0.85rem;
        padding: 0.8rem 2rem;
    }
    .social-grid { grid-template-columns: 1fr 1fr; }
    .member-profile-avatar { width: 120px; height: 120px; border-radius: 20px; }
    .member-card-avatar { width: 130px; }
    .member-card { grid-template-columns: 130px 1fr; gap: 1rem; }
    .member-card-info { max-height: none; }
    .member-card-role { font-size: 0.6rem; letter-spacing: 0.12em; }
    .member-card-v2-body { grid-template-columns: 120px 1fr; gap: 1rem; }
    .member-card-v2-avatar { width: 120px; border-radius: 16px; }
    .member-card-v2-role { font-size: 0.75rem; letter-spacing: 0.12em; }
    .member-name-en { font-size: 0.45em; }
    .album-feature-cover { max-width: 220px; }
    .timeline-card-body { padding: 1.2rem 1.5rem; }
    .member-detail-avatar { width: 140px; }
    .member-hero-title { font-size: clamp(2rem, 10vw, 3rem) !important; }
    .member-hero-name-en-inline { font-size: 0.45em; }
    .member-detail-name-en { font-size: 0.45em; }
    .overlay-card-inner { padding: 1.8rem; }
    .overlay-card-qr img { max-width: 150px; }
}

/* WeChat / legacy browser fallbacks */
@supports not (backdrop-filter: blur(20px)) {
    nav { background: rgba(0,0,0,0.95); }
    nav.scrolled { background: rgba(0,0,0,0.98); }
    .nav-links { background: rgba(0,0,0,0.98) !important; }
    .nav-dropdown-menu { background: rgba(20,20,20,0.98) !important; }
    .overlay-card { background: rgba(0,0,0,0.9); }
}

/* Touch device: ensure interactive targets are large enough */
@media (hover: none) and (pointer: coarse) {
    .nav-links a { padding: 0.5rem 0; }
    .nav-dropdown-menu a { padding: 0.6rem 1rem !important; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .member-social-btn { min-height: 44px; padding: 0.5rem 1.2rem; }
    .btn { min-height: 44px; }
    .tracklist-item { padding: 1rem 0.5rem; }
    .tracklist-play { opacity: 1; width: 36px; height: 36px; }
}
