:root { --font-ui: 'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; --font-body: 'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif; --font-code: 'JetBrains Mono', 'SF Mono', 'Fira Code', Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; --font-display: 'Marcellus', 'Cormorant Garamond', Georgia, serif; --font-name-cn: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', SimSun, serif; --font-hand-en: 'Dancing Script', 'Segoe Script', 'Snell Roundhand', cursive; --font-hand-cn: 'Zhi Mang Xing', 'STXingkai', 'Xingkai SC', 'Kaiti SC', 'KaiTi', 'FZKai-Z03', 'Noto Serif SC', serif; --bg: #e8f1fb; --bg-gradient: none; --text: #334155; --heading: #0f172a; --primary: #3b82f6; --primary-hover: #2563eb; --link-gradient: linear-gradient(135deg, #2563eb, #1d4ed8); --danger: #ef4444; --warning: #f97316; --warning-strong: #ea580c; --daily-action-blue-gradient: linear-gradient(135deg, #93c5fd, #2563eb); --muted: #475569; --home-material-face-top: rgba(255, 255, 255, 0.72); --home-material-face-mid: rgba(255, 255, 255, 0.10); --home-material-face-bottom: rgba(255, 255, 255, 0.44); --home-material-tint: rgba(148, 163, 184, 0.14); --home-material-edge: rgba(255, 255, 255, 0.82); --home-material-edge-accent: rgba(148, 163, 184, 0.26); --home-material-shadow: rgba(73, 92, 138, 0.18); --home-material-shadow-soft: rgba(73, 92, 138, 0.09); --home-material-inner-top: rgba(255, 255, 255, 0.62); --home-material-inner-bottom: rgba(148, 163, 184, 0.1); --home-material-blur: 38px; --home-material-saturate: 184%; --home-material-contrast: 1.1; --home-material-brightness: 1.04; --well-bg: rgba(255, 255, 255, 0.18); --well-border: rgba(255, 255, 255, 0.7); --well-inner: rgba(255, 255, 255, 0.25); --well-shine: rgba(255, 255, 255, 0.12); --panel-bg: rgba(255, 255, 255, 0.55); --panel-border: rgba(255, 255, 255, 0.85); --panel-inner: rgba(255, 255, 255, 0.4); --panel-shine: rgba(255, 255, 255, 0.08); --home-material-face-top: rgba(18, 28, 48, 0.82); --home-material-face-mid: rgba(11, 18, 32, 0.20); --home-material-face-bottom: rgba(20, 28, 44, 0.82); --home-material-tint: rgba(37, 99, 235, 0.12); --home-material-edge: rgba(255, 255, 255, 0.22); --home-material-edge-accent: rgba(96, 165, 250, 0.2); --home-material-shadow: rgba(0, 0, 0, 0.4); --home-material-shadow-soft: rgba(0, 0, 0, 0.22); --home-material-inner-top: rgba(255, 255, 255, 0.16); --home-material-inner-bottom: rgba(148, 163, 184, 0.1); --well-bg: rgba(255, 255, 255, 0.06); --well-border: rgba(255, 255, 255, 0.12); --well-inner: rgba(255, 255, 255, 0.08); --well-shine: rgba(255, 255, 255, 0.04); --panel-bg: rgba(255, 255, 255, 0.12); --panel-border: rgba(255, 255, 255, 0.18); --panel-inner: rgba(255, 255, 255, 0.1); --panel-shine: rgba(255, 255, 255, 0.03); --surface: var(--panel-bg); --surface-highlight: var(--well-bg); --border: var(--panel-border); --shadow: 0 10px 30px var(--home-material-shadow); --header-bg: var(--panel-bg); --radius: 20px; --radius-sm: 14px; --radius-xs: 10px; } [data-theme="dark"] { --bg: #071221; --bg-gradient: none; --text: #cbd5e1; --heading: #f1f5f9; --primary: #60a5fa; --primary-hover: #93c5fd; --link-gradient: linear-gradient(135deg, #93c5fd, #60a5fa); --danger: #f87171; --warning: #fb923c; --warning-strong: #fb923c; --muted: #aebdce; --surface: var(--panel-bg); --surface-highlight: var(--well-bg); --border: var(--panel-border); --shadow: 0 14px 36px var(--home-material-shadow); --header-bg: var(--panel-bg); color-scheme: dark; } * { box-sizing: border-box; padding: 0; margin: 0; } html { scrollbar-gutter: stable; height: 100%; } html { background-color: var(--bg); background-image: var(--bg-gradient); } html, body { max-width: 100vw; overflow-x: hidden; } @supports (overflow: clip) { html, body { overflow-x: clip; } } body { font-family: var(--font-ui); font-optical-sizing: auto; font-kerning: normal; text-rendering: optimizeLegibility; margin: 0; background: transparent; color: var(--text); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.6; transition: color 0.3s ease; min-height: 100vh; display: flex; flex-direction: column; } a { color: inherit; text-decoration: none; } .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } .site-main { flex: 1; } .search-dropdown a { display: block; text-decoration: none; padding: 10px 16px; border-bottom: 1px solid var(--border); transition: background 0.2s; } .search-dropdown a:hover { background: var(--surface-highlight); } .search-result-title { color: var(--heading); font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; } .search-result-chip { font-size: 11px; background: var(--surface-highlight); color: var(--primary); padding: 2px 6px; border-radius: 4px; } .container { width: min(100%, 1080px); max-width: 1080px; margin: 0 auto; padding: 0 24px; } .site-header { position: sticky; top: 16px; z-index: 30; margin: 18px 0 34px; background: transparent; border: 0; box-shadow: none; transition: transform 0.3s ease; } .nav-shell { display: flex; justify-content: center; } .nav-cluster { position: relative; width: 100%; } .nav-island.home-liquid-card { --liquid-content-tint: rgba(255, 255, 255, 0.035); --liquid-inner-highlight: rgba(255, 255, 255, 0.52); --liquid-inner-shadow: rgba(71, 85, 105, 0.07); --liquid-clear-layer: rgba(255, 255, 255, 0.44); --liquid-blur: 22px; --liquid-saturation: 168%; --liquid-brightness: 1.035; --liquid-displacement-scale: 21; --liquid-aberration: 1.2; --liquid-nav-idle-glow: 0.56; --liquid-nav-hover-glow: 0.6; --liquid-nav-caustic-opacity: 0.26; --liquid-nav-refraction: 0.52; --nav-idle-blur: 16px; --nav-idle-saturation: 158%; --nav-idle-brightness: 1.006; --home-material-face-top: rgba(255, 255, 255, 0.24); --home-material-face-mid: rgba(255, 255, 255, 0.105); --home-material-face-bottom: rgba(255, 255, 255, 0.16); border-radius: 999px; overflow: hidden; padding: 10px 14px 10px 18px; border-color: rgba(255, 255, 255, 0.4); backdrop-filter: blur(22px) saturate(168%) contrast(1.025) brightness(1.035); -webkit-backdrop-filter: blur(22px) saturate(168%) contrast(1.025) brightness(1.035); background: radial-gradient(130% 150% at 18% -80%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 44%, transparent 68%), linear-gradient(180deg, var(--home-material-face-top) 0%, var(--home-material-face-mid) 48%, var(--home-material-face-bottom) 100%), var(--liquid-content-tint); background-blend-mode: screen, normal, normal; box-shadow: 0 12px 32px rgba(55, 65, 95, 0.12), 0 3px 8px rgba(55, 65, 95, 0.055), inset 0 1px 0 var(--liquid-inner-highlight), inset 0 -1px 0 rgba(51, 65, 85, 0.14), inset 0 -12px 24px var(--liquid-inner-shadow); } .nav-island.home-liquid-card:hover { transform: none; border-color: rgba(255, 255, 255, 0.47); box-shadow: 0 14px 34px rgba(55, 65, 95, 0.14), 0 4px 10px rgba(55, 65, 95, 0.065), inset 0 1px 0 rgba(255, 255, 255, 0.58), inset 0 -1px 0 rgba(51, 65, 85, 0.16), inset 0 -12px 24px rgba(71, 85, 105, 0.075); } .nav-island.home-liquid-card::before { background: radial-gradient(34% 145% at 17% -42%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.2) 36%, rgba(255, 255, 255, 0) 68%), radial-gradient(26% 120% at 89% 132%, rgba(191, 219, 254, 0.2) 0%, rgba(191, 219, 254, 0.05) 42%, rgba(191, 219, 254, 0) 72%), linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent 46%, rgba(71, 85, 105, 0.045)); opacity: 0.7; } .nav-island.home-liquid-card::after { padding: 1px; background: linear-gradient(112deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.58) 12%, rgba(226, 232, 240, 0.28) 33%, rgba(100, 116, 139, 0.13) 62%, rgba(255, 255, 255, 0.36) 86%, rgba(255, 255, 255, 0.1) 100%); opacity: 0.82; } .nav-island .nav-island-warp { background: radial-gradient(72% 190% at 22% -78%, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.1) 42%, rgba(255, 255, 255, 0) 72%), linear-gradient(180deg, rgba(248, 250, 252, 0.11) 0%, rgba(241, 245, 249, 0.025) 48%, rgba(100, 116, 139, 0.055) 100%); background-blend-mode: screen, normal; backdrop-filter: none; -webkit-backdrop-filter: none; } .nav-island .home-liquid-warp::before { background: radial-gradient(30% 175% at 16% -42%, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.16) 34%, rgba(255, 255, 255, 0) 68%), linear-gradient(104deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.015) 36%, rgba(148, 163, 184, 0.035) 66%, rgba(255, 255, 255, 0.08) 100%); opacity: 0.42; } .nav-island .home-liquid-warp::after { background: radial-gradient(110% 150% at 50% -82%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.025) 48%, rgba(255, 255, 255, 0) 70%), linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.02) 15%, rgba(255, 255, 255, 0) 50%, rgba(71, 85, 105, 0.055) 78%, rgba(255, 255, 255, 0.24) 100%), linear-gradient(180deg, transparent 56%, rgba(51, 65, 85, 0.08) 100%); opacity: 0.46; } .nav-island-body { position: relative; z-index: 5; display: flex; align-items: center; gap: 18px; min-height: 58px; } .brand { font-weight: 700; font-size: 18px; text-decoration: none; color: var(--heading); display: flex; align-items: center; gap: 10px; } .nav-brand { flex: 0 1 auto; min-width: 0; padding-right: 6px; } .nav-brand-icon { width: 22px; height: 22px; flex-shrink: 0; } .nav-brand-label { white-space: nowrap; } .nav-brand-label-short { display: none; } .nav-main { flex: 1 1 auto; min-width: 0; display: flex; align-items: center; justify-content: flex-end; gap: 12px; } .main-grid { display: grid; gap: 48px; grid-template-columns: 1fr; align-items: start; } @media (min-width: 800px) { .main-grid { grid-template-columns: 260px 1fr; } } .right-sidebar-grid { display: grid; gap: 48px; grid-template-columns: 1fr; align-items: start; } @media (min-width: 800px) { .right-sidebar-grid { grid-template-columns: 1fr 280px; } } .sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; z-index: 2; isolation: isolate; } .card { position: relative; border-radius: var(--radius); overflow: hidden; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease; } .glass-empty-state { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-height: clamp(220px, 34vh, 360px); padding: clamp(42px, 8vw, 76px) 28px; text-align: center; overflow: hidden; border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, 0.64); background: linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(219, 234, 254, 0.16) 52%, rgba(199, 210, 254, 0.22)); box-shadow: 0 22px 70px rgba(73, 92, 138, 0.14), inset 0 1px 20px rgba(255, 255, 255, 0.34), inset 0 -1px 0 rgba(147, 197, 253, 0.12); backdrop-filter: blur(24px) saturate(170%); -webkit-backdrop-filter: blur(24px) saturate(170%); } .glass-empty-state::before { content: ""; position: absolute; inset: 1px; border-radius: inherit; pointer-events: none; background: linear-gradient(115deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.06) 38%, rgba(96, 165, 250, 0.1) 74%, rgba(255, 255, 255, 0.22)), radial-gradient(70% 42% at 50% 0%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0)); opacity: 0.74; } .glass-empty-state-title, .glass-empty-state-subtitle { position: relative; z-index: 1; } .glass-empty-state-title { font-family: var(--font-display); font-size: clamp(2.1rem, 6vw, 4.6rem); font-weight: 500; line-height: 1.05; letter-spacing: 0; color: transparent; background: linear-gradient(118deg, #0f172a 0%, #2563eb 42%, #06b6d4 76%, #475569 100%); -webkit-background-clip: text; background-clip: text; text-shadow: 0 18px 46px rgba(37, 99, 235, 0.16); } .glass-empty-state-subtitle { max-width: 520px; color: var(--muted); font-size: 15px; line-height: 1.7; } [data-theme="dark"] .glass-empty-state { border-color: rgba(255, 255, 255, 0.16); background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(59, 130, 246, 0.08) 52%, rgba(14, 165, 233, 0.1)); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), inset 0 1px 18px rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(147, 197, 253, 0.08); } [data-theme="dark"] .glass-empty-state::before { background: linear-gradient(115deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 38%, rgba(96, 165, 250, 0.08) 74%, rgba(255, 255, 255, 0.08)), radial-gradient(70% 42% at 50% 0%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)); opacity: 0.78; } [data-theme="dark"] .glass-empty-state-title { background: linear-gradient(118deg, #f8fafc 0%, #93c5fd 44%, #67e8f9 78%, #cbd5e1 100%); -webkit-background-clip: text; background-clip: text; text-shadow: 0 18px 48px rgba(96, 165, 250, 0.2); } .avatar { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; box-shadow: 0 0 0 3px var(--well-border), 0 4px 20px rgba(73, 92, 138, 0.15); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease; } .avatar:hover { transform: scale(1.05); box-shadow: 0 0 0 3px var(--primary), 0 8px 24px rgba(59, 130, 246, 0.2); } .news-title { font-size: 18px; font-weight: 700; color: var(--heading); margin: 0 0 16px 0; display: flex; align-items: center; gap: 8px; } .news-list { list-style: none; padding: 0; margin: 0; } .news-item { font-size: 14px; color: var(--muted); margin-bottom: 12px; } .news-item a { background: var(--link-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; border-bottom: 1px dashed #93c5fd; transition: filter 0.3s ease, border-color 0.3s ease; } .news-item a:hover { filter: brightness(1.2); border-bottom-color: #2563eb; } .profile-name { display: block; width: fit-content; margin: 0 auto; padding: 0 2px 3px; font-size: clamp(29px, 2.6vw, 34px); font-weight: 500; line-height: 1.16; letter-spacing: 0; font-family: var(--font-hand-en); background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.95) 45%, rgba(29, 78, 216, 0.92) 75%, rgba(30, 64, 175, 0.9) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: none; position: relative; filter: drop-shadow(0 1px 1px rgba(37, 99, 235, 0.22)) drop-shadow(0 3px 8px rgba(37, 99, 235, 0.12)); } .profile-name-cn { margin: 0; font-size: 22px; font-weight: 400; line-height: 1.16; letter-spacing: 0.08em; font-family: var(--font-hand-cn); background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(29, 78, 216, 0.92) 30%, rgba(30, 58, 138, 0.95) 65%, rgba(15, 23, 42, 0.88) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-shadow: none; position: relative; filter: drop-shadow(0 1px 1px rgba(15, 23, 42, 0.35)) drop-shadow(0 2px 6px rgba(30, 64, 175, 0.22)) drop-shadow(0 4px 14px rgba(15, 23, 42, 0.14)); } .profile-role { color: var(--muted); margin: 6px 0 0; font-size: 15px; font-weight: 400; } .contact-links { display: flex; justify-content: center; gap: 12px; margin: 24px 0; } .contact-icon { color: var(--muted); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; padding: 8px; border-radius: 50%; background: var(--well-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border: 1px solid var(--well-border); position: relative; } .contact-icon:hover { color: var(--primary); background: rgba(59, 130, 246, 0.12); transform: translateY(-2px); } .home-glass.profile-card .contact-icon { color: var(--heading); background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.28); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 6px 14px rgba(59, 130, 246, 0.12); } .home-glass.profile-card .contact-icon:hover { color: var(--primary); background: rgba(59, 130, 246, 0.18); border-color: rgba(59, 130, 246, 0.4); } .location { display: flex; align-items: flex-start; justify-content: center; gap: 8px; color: var(--muted); font-size: 14px; margin-top: 20px; text-align: left; line-height: 1.4; padding: 0 10px; } .location svg { flex-shrink: 0; margin-top: 2px; } .home-layout { position: relative; gap: 34px; padding-bottom: 72px; } .home-layout > *:not(.home-lightfield) { position: relative; z-index: 1; } @media (min-width: 800px) { .home-layout { grid-template-columns: 280px minmax(0, 1fr); } } .home-sidebar { z-index: 2; position: relative; top: 0; align-self: start; gap: 18px; isolation: isolate; } .home-sidebar::before { content: none; } .home-sidebar > * { position: relative; z-index: 1; } .home-lightfield { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; isolation: isolate; contain: paint; } .home-lightfield::before, .home-lightfield::after { content: ""; position: absolute; inset: -14%; pointer-events: none; } .home-lightfield::before { background: radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.44) 16%, rgba(255, 255, 255, 0) 38%), radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.2) 16%, rgba(255, 255, 255, 0) 34%), radial-gradient(circle at 48% 82%, rgba(191, 219, 254, 0.34) 0%, rgba(191, 219, 254, 0.12) 22%, rgba(191, 219, 254, 0) 44%); filter: blur(108px); opacity: 0.82; } .home-lightfield::after { background: radial-gradient(118% 84% at 48% 34%, rgba(219, 234, 254, 0.34) 0%, rgba(219, 234, 254, 0.12) 22%, rgba(219, 234, 254, 0) 54%), radial-gradient(88% 74% at 18% 78%, rgba(191, 219, 254, 0.18) 0%, rgba(191, 219, 254, 0.06) 28%, rgba(191, 219, 254, 0) 62%), radial-gradient(92% 78% at 84% 74%, rgba(196, 181, 253, 0.12) 0%, rgba(196, 181, 253, 0.04) 28%, rgba(196, 181, 253, 0) 62%); opacity: 0.68; } .home-lightspot { position: absolute; left: 0; top: 0; width: var(--spot-size, 320px); height: var(--spot-size, 320px); border-radius: 999px; pointer-events: none; mix-blend-mode: normal; filter: blur(var(--spot-blur, 54px)) saturate(118%); opacity: var(--spot-opacity, 0.3); will-change: transform, opacity; transition: transform var(--spot-motion-duration, 6800ms) cubic-bezier(0.22, 1, 0.36, 1), opacity var(--spot-opacity-duration, 4800ms) ease; background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.5) 0%, rgba(59, 130, 246, 0.32) 32%, rgba(59, 130, 246, 0.12) 60%, rgba(59, 130, 246, 0) 82%); } .home-liquid-card { --liquid-content-tint: var(--home-material-tint); --liquid-inner-highlight: var(--home-material-inner-top); --liquid-inner-shadow: var(--home-material-inner-bottom); --home-material-face-top: rgba(255, 255, 255, 0.28); --home-material-face-mid: rgba(255, 255, 255, 0.10); --home-material-face-bottom: rgba(255, 255, 255, 0.14); --liquid-blur: 24px; --liquid-saturation: 180%; --liquid-brightness: 1.08; --liquid-displacement-scale: 25; --liquid-aberration: 1.8; position: relative; overflow: hidden; isolation: isolate; border-radius: 32px; border: 1px solid var(--home-material-edge); backdrop-filter: blur(30px) saturate(180%) contrast(1.08) brightness(1.04); -webkit-backdrop-filter: blur(30px) saturate(180%) contrast(1.08) brightness(1.04); background: linear-gradient(180deg, var(--home-material-face-top) 0%, var(--home-material-face-mid) 42%, var(--home-material-face-bottom) 100%), linear-gradient(180deg, var(--liquid-content-tint), transparent); box-shadow: 0 14px 28px rgba(99, 112, 158, 0.075), 0 5px 12px rgba(99, 112, 158, 0.035), inset 0 1px 0 var(--liquid-inner-highlight), inset 0 -18px 34px var(--liquid-inner-shadow); transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease; } .home-liquid-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.24); box-shadow: 0 22px 48px rgba(73, 92, 138, 0.16), 0 10px 22px rgba(73, 92, 138, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82), inset 0 -18px 34px rgba(148, 163, 184, 0.12); } .home-liquid-card::before, .home-liquid-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; } .home-liquid-card::before { z-index: 1; background: radial-gradient(120% 90% at 50% 0%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.09) 28%, rgba(255, 255, 255, 0) 52%), linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)); opacity: 0.86; } .home-liquid-card::after { z-index: 4; padding: 1.25px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.12) 24%, rgba(226, 232, 240, 0.28) 50%, rgba(148, 163, 184, 0.08) 78%, rgba(255, 255, 255, 0.02) 100%); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0.22; } .home-liquid-warp { position: absolute; inset: 0; z-index: 2; display: block; overflow: hidden; border-radius: inherit; pointer-events: none; background: radial-gradient(120% 95% at 50% 0%, rgba(255, 255, 255, 0.42) 0%, rgba(241, 245, 249, 0.12) 18%, rgba(255, 255, 255, 0) 48%), linear-gradient(145deg, rgba(148, 163, 184, 0.1), rgba(255, 255, 255, 0.02) 42%, rgba(226, 232, 240, 0.1) 100%), linear-gradient(180deg, rgba(248, 250, 252, 0.26) 0%, rgba(241, 245, 249, 0.11) 42%, rgba(255, 255, 255, 0.055) 100%); background-blend-mode: screen, overlay, normal; contain: paint; } .home-liquid-warp::before, .home-liquid-warp::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; } .home-liquid-warp::before { background: radial-gradient(138% 92% at 50% 0%, rgba(255, 255, 255, 0.76) 0%, rgba(241, 245, 249, 0.32) 10%, rgba(148, 163, 184, 0.11) 24%, rgba(148, 163, 184, 0) 42%), linear-gradient(145deg, rgba(255, 255, 255, 0.16) 0%, rgba(226, 232, 240, 0.03) 42%, rgba(255, 255, 255, 0) 72%); mix-blend-mode: screen; opacity: 0.58; } .home-liquid-warp::after { background: radial-gradient(110% 140% at 50% -25%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.04) 34%, rgba(255, 255, 255, 0) 62%), linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.025) 28%, rgba(148, 163, 184, 0.1) 52%, rgba(255, 255, 255, 0.14) 100%); mix-blend-mode: soft-light; opacity: 0.44; } .home-liquid-body { position: relative; z-index: 5; } .home-profile-card { --liquid-displacement-scale: 27; --liquid-aberration: 1.9; } .home-news-card { --liquid-displacement-scale: 23; --liquid-aberration: 1.6; } .ambient-liquid-card { --liquid-displacement-scale: 27; --liquid-aberration: 1.9; } .ambient-liquid-card .home-liquid-body { padding: 24px 28px; } .home-profile-card .home-liquid-body { padding: 38px 28px; text-align: center; } .home-news-card .home-liquid-body { padding: 24px 22px; } .home-profile-card .avatar { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.88), 0 0 0 10px rgba(255, 255, 255, 0.08), 0 18px 34px rgba(99, 112, 158, 0.18); transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease; } .home-profile-card .avatar:hover { transform: scale(1.04); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.94), 0 0 0 10px rgba(241, 245, 249, 0.12), 0 22px 38px rgba(99, 112, 158, 0.2); } .home-liquid-card .contact-icon, .home-liquid-card .news-expand-btn { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.22); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 16px rgba(99, 112, 158, 0.08); } .home-liquid-card .contact-icon:hover, .home-liquid-card .news-expand-btn:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.3); } .home-news-card ul { list-style: none; padding: 0; margin: 0; } .home-news-card li { font-size: 14px; color: var(--muted); margin-bottom: 12px; } .home-news-card li:last-child { margin-bottom: 0; padding-bottom: 0; } .home-news-card p { margin: 0; } .home-news-card strong { color: var(--heading); font-weight: 600; } .home-glass { --home-glass-blur: 38px; --home-glass-face-top: rgba(255, 255, 255, 0.72); --home-glass-face-sheen: rgba(255, 255, 255, 0.38); --home-glass-face-mid: rgba(255, 255, 255, 0.24); --home-glass-face-bottom: rgba(255, 255, 255, 0.44); --home-glass-edge-a: rgba(255, 255, 255, 1); --home-glass-edge-b: rgba(255, 255, 255, 0.82); --home-glass-edge-c: rgba(186, 230, 253, 0.34); --home-glass-edge-d: rgba(147, 197, 253, 0.64); --home-glass-shadow: rgba(73, 92, 138, 0.22); --home-glass-shadow-soft: rgba(73, 92, 138, 0.12); --home-glass-bottom-glow: rgba(96, 165, 250, 0.2); --home-glass-inner-top: rgba(255, 255, 255, 0.9); --home-glass-inner-bottom: rgba(255, 255, 255, 0.26); position: relative; overflow: hidden; isolation: isolate; border-radius: 32px; border: none; background: linear-gradient(180deg, var(--home-glass-face-top) 0%, var(--home-glass-face-sheen) 16%, var(--home-glass-face-mid) 42%, var(--home-glass-face-bottom) 100%); backdrop-filter: blur(var(--home-glass-blur)) saturate(190%) contrast(1.12) brightness(1.06); -webkit-backdrop-filter: blur(var(--home-glass-blur)) saturate(190%) contrast(1.12) brightness(1.06); box-shadow: 0 36px 84px var(--home-glass-shadow), 0 16px 34px var(--home-glass-shadow-soft), 0 2px 0 rgba(255, 255, 255, 0.34), inset 0 1px 0 var(--home-glass-inner-top), inset 0 -22px 36px var(--home-glass-inner-bottom); } .home-glass::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0; background: radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.72) 10%, rgba(255, 255, 255, 0.16) 22%, rgba(255, 255, 255, 0) 34%), radial-gradient(circle at 82% 14%, rgba(191, 219, 254, 0.54) 0%, rgba(191, 219, 254, 0.26) 14%, rgba(191, 219, 254, 0) 34%), radial-gradient(circle at 74% 74%, rgba(59, 130, 246, 0.12) 0%, rgba(59, 130, 246, 0.035) 18%, rgba(59, 130, 246, 0) 36%), radial-gradient(circle at 50% 120%, var(--home-glass-bottom-glow) 0%, rgba(96, 165, 250, 0.02) 34%, rgba(96, 165, 250, 0) 50%), linear-gradient(130deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.12) 34%, rgba(255, 255, 255, 0.02) 56%, rgba(255, 255, 255, 0.2) 100%); mix-blend-mode: screen; opacity: 1; } .home-glass::after { content: ""; position: absolute; inset: 0; padding: 1.15px; border-radius: inherit; pointer-events: none; z-index: 1; background: linear-gradient(140deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.12) 22%, rgba(255, 255, 255, 0.03) 46%, rgba(186, 230, 253, 0.08) 72%, rgba(255, 255, 255, 0.42) 100%); box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; filter: saturate(122%) brightness(108%); opacity: 0.34; } .home-glass:hover { transform: translateY(-4px); box-shadow: 0 42px 94px rgba(73, 92, 138, 0.24), 0 18px 36px rgba(73, 92, 138, 0.13), 0 2px 0 rgba(255, 255, 255, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.94), inset 0 -20px 34px rgba(96, 165, 250, 0.18); } .home-glass > * { position: relative; } .home-glass.profile-card, .home-glass.news-card { --home-glass-blur: 40px; --home-glass-face-top: rgba(255, 255, 255, 0.86); --home-glass-face-mid: rgba(255, 255, 255, 0.34); --home-glass-face-bottom: rgba(255, 255, 255, 0.52); --home-glass-shadow: rgba(71, 92, 140, 0.2); --home-glass-shadow-soft: rgba(71, 92, 140, 0.1); --home-glass-bottom-glow: rgba(191, 219, 254, 0.16); --home-glass-inner-bottom: rgba(255, 255, 255, 0.2); backdrop-filter: blur(var(--home-glass-blur)) saturate(185%) contrast(1.08) brightness(1.02); -webkit-backdrop-filter: blur(var(--home-glass-blur)) saturate(185%) contrast(1.08) brightness(1.02); box-shadow: 0 30px 64px rgba(71, 92, 140, 0.16), 0 14px 30px rgba(71, 92, 140, 0.08), 0 2px 0 rgba(255, 255, 255, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.72), inset 0 -20px 30px rgba(191, 219, 254, 0.12); } .home-glass-body { position: relative; z-index: 4; } .home-glass.profile-card .home-glass-body { padding: 38px 28px; text-align: center; } .home-glass.profile-card .avatar { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.82), 0 0 0 8px rgba(255, 255, 255, 0.18), 0 18px 34px rgba(79, 99, 143, 0.24); } .home-glass.profile-card .avatar:hover { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.92), 0 0 0 8px rgba(96, 165, 250, 0.2), 0 22px 38px rgba(59, 130, 246, 0.24); } .home-glass.news-card { } .home-glass.news-card .home-glass-body { padding: 24px 22px; } .news-title { justify-content: space-between; } .news-expand-btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; margin-left: auto; border: 1px solid rgba(255, 255, 255, 0.44); border-radius: 999px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.18)); color: var(--muted); cursor: pointer; position: relative; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76), 0 8px 18px rgba(73, 92, 138, 0.1); transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, color 0.3s ease; } .news-expand-btn:hover { color: var(--heading); transform: translateY(-1px) scale(1.03); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 12px 22px rgba(59, 130, 246, 0.16); } .home-glass.news-card .news-expand-btn { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.24); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 18px rgba(73, 92, 138, 0.08); } .home-content { --home-material-face-top: rgba(255, 255, 255, 0.40); --home-material-face-mid: rgba(255, 255, 255, 0.14); --home-material-face-bottom: rgba(255, 255, 255, 0.22); --home-material-shadow: rgba(73, 92, 138, 0.18); --home-material-shadow-soft: rgba(73, 92, 138, 0.09); --home-material-inner-top: rgba(255, 255, 255, 0.62); --home-material-inner-bottom: rgba(148, 163, 184, 0.1); background: linear-gradient(180deg, var(--home-material-face-top) 0%, rgba(255, 255, 255, 0.22) 16%, var(--home-material-face-mid) 42%, var(--home-material-face-bottom) 100%); backdrop-filter: blur(var(--home-glass-blur)) saturate(180%) contrast(1.08) brightness(1.01); -webkit-backdrop-filter: blur(var(--home-glass-blur)) saturate(180%) contrast(1.08) brightness(1.01); box-shadow: 0 30px 76px var(--home-material-shadow), 0 12px 28px var(--home-material-shadow-soft), 0 2px 0 rgba(255, 255, 255, 0.22), inset 0 1px 0 var(--home-material-inner-top), inset 0 -18px 28px var(--home-material-inner-bottom); } .home-content.home-glass::before { background: radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 12%, rgba(255, 255, 255, 0) 26%), radial-gradient(circle at 82% 14%, rgba(226, 232, 240, 0.14) 0%, rgba(226, 232, 240, 0.05) 16%, rgba(226, 232, 240, 0) 30%), linear-gradient(130deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.025) 34%, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 0.055) 100%); opacity: 0.52; } .home-content.home-glass::after { opacity: 0.24; filter: saturate(112%) brightness(102%); } [data-theme="dark"] .home-content.home-glass::before { background: radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 12%, rgba(255, 255, 255, 0) 26%), radial-gradient(circle at 82% 18%, rgba(148, 163, 184, 0.12) 0%, rgba(148, 163, 184, 0.04) 16%, rgba(148, 163, 184, 0) 30%), linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(15, 23, 42, 0) 60%, rgba(148, 163, 184, 0.04) 100%); opacity: 0.5; } .home-content .home-glass-body { padding: 46px 42px; display: flex; flex-direction: column; gap: 36px; } .home-content .cv-section { position: relative; animation: fadeIn 0.5s ease-out; } .home-content .cv-section + .cv-section { padding-top: 0; } .home-content .cv-section + .cv-section::before { content: none; } .home-content .section-title { margin-bottom: 1.2rem; } .home-content .prose { text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18); } .home-content .prose h2 { font-size: 1.2rem; margin-top: 1.6rem; margin-bottom: 0.8rem; border-bottom: none; padding-bottom: 0; } [data-theme="dark"] .home-sidebar::before { content: none; } [data-theme="dark"] .home-lightfield::before { background: radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.34) 0%, rgba(37, 99, 235, 0.24) 18%, rgba(15, 23, 42, 0) 38%), radial-gradient(circle at 82% 20%, rgba(168, 85, 247, 0.32) 0%, rgba(99, 102, 241, 0.22) 18%, rgba(15, 23, 42, 0) 34%), radial-gradient(circle at 48% 86%, rgba(34, 211, 238, 0.22) 0%, rgba(15, 23, 42, 0) 34%); opacity: 0.78; } [data-theme="dark"] .home-lightfield::after { background: radial-gradient(116% 82% at 46% 34%, rgba(37, 99, 235, 0.22) 0%, rgba(37, 99, 235, 0.1) 24%, rgba(37, 99, 235, 0) 58%), radial-gradient(88% 74% at 18% 78%, rgba(14, 165, 233, 0.16) 0%, rgba(14, 165, 233, 0.06) 30%, rgba(14, 165, 233, 0) 64%), radial-gradient(92% 78% at 84% 74%, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0.06) 30%, rgba(99, 102, 241, 0) 64%); opacity: 0.62; } [data-theme="dark"] .home-lightspot { mix-blend-mode: screen; filter: blur(var(--spot-blur, 54px)) saturate(120%); background: radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.36) 0%, rgba(59, 130, 246, 0.3) 24%, rgba(37, 99, 235, 0.22) 48%, rgba(30, 64, 175, 0.08) 66%, rgba(30, 64, 175, 0) 80%); } [data-theme="dark"] .home-liquid-card { --liquid-content-tint: var(--home-material-tint); --liquid-inner-highlight: var(--home-material-inner-top); --liquid-inner-shadow: var(--home-material-inner-bottom); --home-material-face-top: rgba(18, 27, 45, 0.34); --home-material-face-mid: rgba(12, 18, 32, 0.2); --home-material-face-bottom: rgba(18, 27, 45, 0.28); --liquid-blur: 18px; --liquid-saturation: 154%; --liquid-brightness: 1.02; border-color: rgba(255, 255, 255, 0.08); backdrop-filter: blur(28px) saturate(160%) contrast(1.06) brightness(1.02); -webkit-backdrop-filter: blur(28px) saturate(160%) contrast(1.06) brightness(1.02); background: linear-gradient(180deg, var(--home-material-face-top) 0%, var(--home-material-face-mid) 48%, var(--home-material-face-bottom) 100%), linear-gradient(180deg, var(--liquid-content-tint), transparent); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28), 0 12px 22px rgba(0, 0, 0, 0.12), inset 0 1px 0 var(--liquid-inner-highlight), inset 0 -18px 34px var(--liquid-inner-shadow); } [data-theme="dark"] .home-liquid-card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.14); box-shadow: 0 34px 68px rgba(0, 0, 0, 0.4), 0 14px 26px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -18px 34px rgba(148, 163, 184, 0.1); } [data-theme="dark"] .home-liquid-card::before { background: radial-gradient(120% 88% at 50% 0%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.045) 24%, rgba(255, 255, 255, 0) 52%), linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)); opacity: 0.7; } [data-theme="dark"] .home-liquid-card::after { background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.08) 22%, rgba(148, 163, 184, 0.14) 50%, rgba(100, 116, 139, 0.06) 82%, rgba(255, 255, 255, 0.02) 100%); opacity: 0.16; } [data-theme="dark"] .home-liquid-warp { background: radial-gradient(120% 95% at 50% 0%, rgba(148, 163, 184, 0.16) 0%, rgba(100, 116, 139, 0.08) 18%, rgba(255, 255, 255, 0) 48%), linear-gradient(145deg, rgba(148, 163, 184, 0.08), rgba(255, 255, 255, 0.012) 42%, rgba(100, 116, 139, 0.08) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.025) 42%, rgba(255, 255, 255, 0.012) 100%); } [data-theme="dark"] .home-liquid-warp::before { background: radial-gradient(138% 94% at 50% 0%, rgba(203, 213, 225, 0.32) 0%, rgba(148, 163, 184, 0.18) 10%, rgba(100, 116, 139, 0.06) 22%, rgba(100, 116, 139, 0) 40%), linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(148, 163, 184, 0.015) 46%, rgba(255, 255, 255, 0) 74%); opacity: 0.38; } [data-theme="dark"] .home-liquid-warp::after { background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0)); opacity: 0.16; } [data-theme="dark"] .home-profile-card { --liquid-displacement-scale: 22; --liquid-aberration: 1.3; } [data-theme="dark"] .home-news-card { --liquid-displacement-scale: 19; --liquid-aberration: 1.1; } [data-theme="dark"] .home-profile-card .avatar { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 0 10px rgba(255, 255, 255, 0.04), 0 18px 34px rgba(0, 0, 0, 0.34); } [data-theme="dark"] .home-liquid-card .contact-icon, [data-theme="dark"] .home-liquid-card .news-expand-btn { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.12); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 18px rgba(0, 0, 0, 0.16); } [data-theme="dark"] .home-liquid-card .contact-icon:hover, [data-theme="dark"] .home-liquid-card .news-expand-btn:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); } [data-theme="dark"] .home-glass.profile-card, [data-theme="dark"] .home-glass.news-card { --home-glass-face-top: rgba(20, 29, 46, 0.9); --home-glass-face-mid: rgba(14, 20, 34, 0.72); --home-glass-face-bottom: rgba(20, 28, 44, 0.88); --home-glass-shadow: rgba(0, 0, 0, 0.5); --home-glass-shadow-soft: rgba(0, 0, 0, 0.28); --home-glass-inner-bottom: rgba(37, 99, 235, 0.08); } [data-theme="dark"] .home-glass { --home-glass-face-top: rgba(18, 28, 48, 0.82); --home-glass-face-sheen: rgba(30, 41, 59, 0.46); --home-glass-face-mid: rgba(11, 18, 32, 0.56); --home-glass-face-bottom: rgba(20, 28, 44, 0.82); --home-glass-edge-a: rgba(255, 255, 255, 0.36); --home-glass-edge-b: rgba(191, 219, 254, 0.26); --home-glass-edge-c: rgba(96, 165, 250, 0.2); --home-glass-edge-d: rgba(147, 197, 253, 0.34); --home-glass-shadow: rgba(0, 0, 0, 0.52); --home-glass-shadow-soft: rgba(0, 0, 0, 0.3); --home-glass-bottom-glow: rgba(96, 165, 250, 0.24); --home-glass-inner-top: rgba(255, 255, 255, 0.16); --home-glass-inner-bottom: rgba(96, 165, 250, 0.12); } [data-theme="dark"] .home-glass::before { background: radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.11) 10%, rgba(255, 255, 255, 0.02) 22%, rgba(255, 255, 255, 0) 32%), radial-gradient(circle at 82% 18%, rgba(96, 165, 250, 0.36) 0%, rgba(96, 165, 250, 0.16) 18%, rgba(96, 165, 250, 0) 38%), radial-gradient(circle at 76% 76%, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0.02) 20%, rgba(37, 99, 235, 0) 36%), radial-gradient(circle at 50% 120%, rgba(37, 99, 235, 0.26) 0%, rgba(37, 99, 235, 0.04) 36%, rgba(37, 99, 235, 0) 52%), linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 36%, rgba(15, 23, 42, 0) 60%, rgba(96, 165, 250, 0.1) 100%); } [data-theme="dark"] .home-glass:hover { box-shadow: 0 44px 92px rgba(0, 0, 0, 0.56), 0 18px 36px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -22px 36px rgba(96, 165, 250, 0.16); } [data-theme="dark"] .home-glass.profile-card .avatar { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 0 0 8px rgba(255, 255, 255, 0.04), 0 18px 34px rgba(0, 0, 0, 0.34); } [data-theme="dark"] .profile-name { background: linear-gradient(135deg, rgba(219, 234, 254, 0.95) 0%, rgba(147, 197, 253, 0.95) 35%, rgba(96, 165, 250, 0.92) 70%, rgba(59, 130, 246, 0.88) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 1px 1px rgba(96, 165, 250, 0.45)) drop-shadow(0 3px 10px rgba(59, 130, 246, 0.28)) drop-shadow(0 6px 20px rgba(37, 99, 235, 0.18)); } [data-theme="dark"] .profile-name-cn { background: linear-gradient(135deg, rgba(96, 165, 250, 0.95) 0%, rgba(59, 130, 246, 0.95) 35%, rgba(37, 99, 235, 0.92) 70%, rgba(29, 78, 216, 0.88) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; filter: drop-shadow(0 1px 1px rgba(59, 130, 246, 0.4)) drop-shadow(0 2px 8px rgba(37, 99, 235, 0.25)) drop-shadow(0 4px 16px rgba(15, 23, 42, 0.2)); } [data-theme="dark"] .home-glass.profile-card .contact-icon, [data-theme="dark"] .home-glass.news-card .news-expand-btn { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.12); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 18px rgba(0, 0, 0, 0.16); } [data-theme="dark"] .home-glass.profile-card .contact-icon:hover, [data-theme="dark"] .home-glass.news-card .news-expand-btn:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); } [data-theme="dark"] .home-content .cv-section + .cv-section::before { background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04) 38%, rgba(96, 165, 250, 0.18) 100%); } [data-theme="dark"] .home-content .prose { text-shadow: none; } [data-theme="dark"] .home-content .prose h2 { border-bottom: none; } [data-theme="dark"] .news-expand-btn { border-color: rgba(255, 255, 255, 0.18); background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(15, 23, 42, 0.16)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 8px 18px rgba(0, 0, 0, 0.18); } [data-theme="dark"] .news-expand-btn:hover { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 24px rgba(37, 99, 235, 0.18); } .cv-section { animation: fadeIn 0.5s ease-out; } .section-title { font-family: var(--font-body); font-size: 1.5rem; font-weight: 600; color: var(--heading); margin: 0 0 1.5rem 0; padding-left: 1rem; border-left: 5px solid var(--primary); line-height: 1.25; letter-spacing: -0.01em; font-optical-sizing: auto; } .cv-section.section-introduction { --accent: #38bdf8; } .cv-section.section-education { --accent: #3b82f6; } .cv-section.section-selected-publication { --accent: #6366f1; } .cv-section.section-awards { --accent: #2563eb; } .cv-section.section-teaching { --accent: #0ea5e9; } .cv-section.section-projects { --accent: #6366f1; } .cv-section.section-research { --accent: #38bdf8; } .cv-section.section-experience { --accent: #0ea5e9; } .cv-section.section-skills { --accent: #3b82f6; } .cv-section.section-contact { --accent: #60a5fa; } .cv-section.section-default { --accent: #3b82f6; } .home-content .cv-section .section-title { border-left-color: var(--accent, var(--primary)); background-image: linear-gradient(90deg, color-mix(in srgb, var(--accent, var(--primary)) 10%, transparent) 0%, transparent 38%); } [data-theme="dark"] .cv-section.section-introduction { --accent: #7dd3fc; } [data-theme="dark"] .cv-section.section-education { --accent: #60a5fa; } [data-theme="dark"] .cv-section.section-selected-publication { --accent: #818cf8; } [data-theme="dark"] .cv-section.section-awards { --accent: #3b82f6; } [data-theme="dark"] .cv-section.section-teaching { --accent: #38bdf8; } [data-theme="dark"] .cv-section.section-projects { --accent: #818cf8; } [data-theme="dark"] .cv-section.section-research { --accent: #7dd3fc; } [data-theme="dark"] .cv-section.section-experience { --accent: #38bdf8; } [data-theme="dark"] .cv-section.section-skills { --accent: #60a5fa; } [data-theme="dark"] .cv-section.section-contact { --accent: #93c5fd; } [data-theme="dark"] .cv-section.section-default { --accent: #60a5fa; } [data-theme="dark"] .home-content .cv-section .section-title { background-image: linear-gradient(90deg, color-mix(in srgb, var(--accent, var(--primary)) 16%, transparent) 0%, transparent 42%); } .page-shell { display: flex; flex-direction: column; gap: 40px; padding: 8px 0 60px; } .page-stack { display: flex; flex-direction: column; gap: 24px; } .page-lead { color: var(--muted); font-size: 1.1rem; margin: -16px 0 0; max-width: 680px; } .article-filter-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 16px 20px; } .article-filter-label { color: var(--text); font-size: 14px; } .article-filter-bar .article-card-link { margin-top: 0; } .article-card { padding: 0; } .home-glass.article-card { --home-glass-face-top: rgba(255, 255, 255, 0.50); --home-glass-face-sheen: rgba(255, 255, 255, 0.20); --home-glass-face-mid: rgba(255, 255, 255, 0.16); --home-glass-face-bottom: rgba(255, 255, 255, 0.28); --home-glass-shadow: rgba(73, 92, 138, 0.18); --home-glass-shadow-soft: rgba(73, 92, 138, 0.09); --home-glass-inner-top: rgba(255, 255, 255, 0.62); --home-glass-inner-bottom: rgba(148, 163, 184, 0.1); } [data-theme="dark"] .home-glass.article-card { --home-glass-face-top: rgba(20, 29, 46, 0.50); --home-glass-face-sheen: rgba(30, 41, 59, 0.30); --home-glass-face-mid: rgba(11, 18, 32, 0.40); --home-glass-face-bottom: rgba(20, 28, 44, 0.52); --home-glass-shadow: rgba(0, 0, 0, 0.42); --home-glass-shadow-soft: rgba(0, 0, 0, 0.24); --home-glass-inner-top: rgba(255, 255, 255, 0.16); --home-glass-inner-bottom: rgba(148, 163, 184, 0.1); } .home-glass.article-card::before { background: radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.1) 12%, rgba(255, 255, 255, 0) 26%), radial-gradient(circle at 82% 14%, rgba(191, 219, 254, 0.16) 0%, rgba(191, 219, 254, 0.06) 16%, rgba(191, 219, 254, 0) 30%), linear-gradient(130deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 34%, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 0.08) 100%); opacity: 0.6; } [data-theme="dark"] .home-glass.article-card::before { background: radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 12%, rgba(255, 255, 255, 0) 26%), radial-gradient(circle at 82% 18%, rgba(96, 165, 250, 0.12) 0%, rgba(96, 165, 250, 0.04) 16%, rgba(96, 165, 250, 0) 30%), linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 36%, rgba(15, 23, 42, 0) 60%, rgba(96, 165, 250, 0.04) 100%); opacity: 0.5; } .article-card-title { margin: 0 0 12px 0; font-size: 1.5rem; line-height: 1.25; } .article-card-title a { background: var(--link-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; transition: filter 0.3s ease; } .article-card-title a:hover { filter: brightness(1.2); } .article-card-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; } .article-card-summary { color: var(--text); font-size: 15px; margin: 0; line-height: 1.6; } .article-card-link { display: inline-flex; margin-top: 16px; color: var(--primary); font-weight: 600; font-size: 14px; text-decoration: none; } .article-card-link:hover { color: var(--primary-hover); } .article-card-meta--md { gap: 20px; font-size: 14px; } .article-detail-back { margin-bottom: 20px; } .article-detail-back-link { text-decoration: none; padding-left: 0; color: var(--text); font-weight: 500; } .article-detail-hero { margin-bottom: 24px; } .article-detail-hero .home-glass-body { padding: 28px 32px; } .article-detail-title { font-size: 2.5rem; font-weight: 700; margin: 0 0 16px 0; line-height: 1.2; color: var(--heading); } .article-detail-tags { display: flex; gap: 6px; flex-wrap: wrap; } .daily-card { scroll-margin-top: 120px; } .daily-card.home-glass { --home-glass-blur: 18px; } .daily-card.is-target { border-color: rgba(59, 130, 246, 0.45); box-shadow: 0 16px 44px rgba(59, 130, 246, 0.16), inset 0 2px 16px var(--panel-inner), inset 0 -1px 0 var(--panel-inner); } .daily-card-kicker { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; } .daily-card-kicker span { display: inline-flex; align-items: center; min-height: 24px; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--well-border); background: var(--well-bg); } .daily-card-meta { align-items: center; } .daily-card-main-meta { row-gap: 10px; } .daily-card-main-meta > span { display: inline-flex; align-items: center; gap: 5px; } .daily-meta-authors { color: var(--muted); } .daily-meta-date { color: var(--muted); } .daily-meta-stars { color: #ca8a04; font-weight: 700; } .daily-card-fact { font-weight: 700; } .daily-keyword-list { width: 100%; margin-top: 2px; } .daily-tldr { margin-top: 16px; display: block; overflow: visible; white-space: normal; } .daily-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 18px; } .daily-action-button { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 34px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--well-border); background: var(--well-bg); backdrop-filter: none; -webkit-backdrop-filter: none; color: var(--heading); font: inherit; font-size: 13px; font-weight: 700; line-height: 1; cursor: pointer; transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease; } .daily-action-icon { display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; flex: 0 0 15px; } .daily-action-label { display: inline-flex; align-items: center; } .daily-action-button.action-glass { color: var(--muted); background: var(--well-bg); border-color: var(--well-border); box-shadow: inset 0 1px 8px var(--well-inner); } .daily-action-button.action-glass:not(.daily-action-dislike):hover, .daily-action-button.action-glass:not(.daily-action-dislike):active { transform: translateY(-1px); color: #fff; border-color: rgba(37, 99, 235, 0.42); background: var(--daily-action-blue-gradient); box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2), 0 0 0 1px rgba(191, 219, 254, 0.58), inset 0 1px 8px rgba(255, 255, 255, 0.28); } .daily-action-button.daily-action-like:hover, .daily-action-button.feedback.is-active { transform: translateY(-1px); color: #fff; border-color: rgba(37, 99, 235, 0.42); background: var(--daily-action-blue-gradient); box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2), 0 0 0 1px rgba(191, 219, 254, 0.58), inset 0 1px 8px rgba(255, 255, 255, 0.28); } .daily-action-button:disabled { cursor: wait; opacity: 0.68; transform: none; } .daily-action-button.feedback { background: var(--well-bg); border-color: var(--well-border); } .daily-action-button.daily-action-dislike { color: var(--warning-strong); border-color: color-mix(in srgb, var(--warning) 32%, transparent); background: color-mix(in srgb, var(--warning) 10%, transparent); box-shadow: inset 0 1px 8px rgba(255, 237, 213, 0.28); } .daily-action-button.daily-action-dislike:hover { transform: translateY(-1px); color: #fff; border-color: color-mix(in srgb, var(--warning) 42%, transparent); background: linear-gradient(135deg, var(--warning), var(--danger)); } .daily-card.is-feedback-hidden { display: none; } .daily-github-repo-card { margin: 14px 0 0; } .daily-github-language { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 0.85rem; font-weight: 500; } .daily-github-language-dot { display: inline-block; width: 10px; height: 10px; border-radius: 999px; background: var(--primary); } .daily-repo-source { --liquid-blur: 14px; --liquid-saturation: 150%; --liquid-brightness: 1.02; --liquid-displacement-scale: 12; --liquid-aberration: 0.8; margin-top: 14px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.5); box-shadow: 0 8px 18px rgba(73, 92, 138, 0.08), inset 0 1px 8px rgba(255, 255, 255, 0.22); } .daily-repo-source-body { display: grid; gap: 8px; padding: 12px 14px; } .daily-repo-source-name { display: inline-flex; align-items: center; gap: 8px; width: fit-content; color: var(--heading); font-size: 14px; font-weight: 700; } .daily-repo-source-meta, .daily-repo-source-topics { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; color: var(--muted); font-size: 12px; } .daily-repo-source-meta span, .daily-repo-source-meta a, .daily-repo-source-topics span { display: inline-flex; align-items: center; gap: 4px; min-height: 24px; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--well-border); background: var(--well-bg); } .daily-repo-source-meta a { color: var(--primary); font-weight: 700; } .daily-paper-links { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; } .daily-paper-links a { color: var(--primary); font-size: 13px; font-weight: 700; } .daily-sidebar-heading { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; } .daily-sidebar-heading .sidebar-card-title { margin: 0; } .daily-type-toggle { display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0; } .daily-type-button { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 999px; border: 1px solid rgba(59, 130, 246, 0.2); background: rgba(59, 130, 246, 0.07); color: var(--muted); transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease; } .daily-type-button.daily-type-all { width: auto; min-width: 34px; padding: 0 9px; font-size: 12px; font-weight: 700; } .daily-type-button:hover, .daily-type-button.is-active { color: #fff; border-color: transparent; background: linear-gradient(135deg, #3b82f6, #2563eb); transform: translateY(-1px); } .daily-filter-chips { justify-content: flex-start; align-items: flex-start; gap: 8px; } .daily-grid .sidebar { gap: 24px; } .daily-archive-card { --anniv-grad: linear-gradient(135deg, #93c5fd, #2563eb); } .daily-archive-body { padding: 22px 18px 18px; } .daily-archive-day { text-decoration: none; } .daily-archive-day.is-important { cursor: pointer; } .daily-keyword-list { justify-content: flex-start; align-items: flex-start; gap: 8px; } [data-theme="dark"] .daily-archive-card { --anniv-grad: linear-gradient(135deg, #93c5fd, #60a5fa); } .daily-profile-card { --liquid-displacement-scale: 23; --liquid-aberration: 1.6; } .daily-profile-body { padding: 22px 18px 18px; } .daily-profile-title { margin: 0 0 12px; } .daily-profile-radar { display: block; width: min(100%, 236px); margin: 0 auto; aspect-ratio: 1; max-height: 224px; overflow: visible; } .daily-profile-ring { fill: none; stroke: rgba(37, 99, 235, 0.18); stroke-width: 1; } .daily-profile-axis { fill: none; stroke: rgba(37, 99, 235, 0.16); stroke-width: 1; } .daily-profile-polygon { fill: rgba(96, 165, 250, 0.2); stroke: rgba(37, 99, 235, 0.78); stroke-width: 2.2; filter: drop-shadow(0 10px 18px rgba(37, 99, 235, 0.18)); } .daily-profile-node { fill: #93c5fd; stroke: rgba(255, 255, 255, 0.84); stroke-width: 1.2; } .daily-profile-label { fill: var(--muted); font-size: 8.6px; font-weight: 700; letter-spacing: 0; dominant-baseline: middle; } [data-theme="dark"] .daily-profile-ring { stroke: rgba(147, 197, 253, 0.18); } [data-theme="dark"] .daily-profile-axis { stroke: rgba(147, 197, 253, 0.14); } [data-theme="dark"] .daily-profile-polygon { fill: rgba(96, 165, 250, 0.18); stroke: rgba(147, 197, 253, 0.82); } .chip-list { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; } .chip { display: inline-flex; align-items: center; justify-content: center; min-height: 28px; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 500; line-height: 1; text-decoration: none; color: var(--muted); background: var(--well-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--well-border); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease, background 0.3s ease, color 0.3s ease; } .chip:hover { transform: translateY(-1px); border-color: rgba(59, 130, 246, 0.35); color: var(--heading); } .chip.is-active { background: var(--primary); border-color: transparent; color: #fff; box-shadow: 0 10px 20px rgba(59, 130, 246, 0.22); } .chip.is-active span { opacity: 0.8; } .sidebar-card { padding: 24px; } .sidebar-card-title { margin: 0 0 16px; font-size: 18px; color: var(--heading); } .article-tag-chip { min-height: 32px; padding: 6px 15px; font-size: 13px; color: var(--text); background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66)); border-color: rgba(255, 255, 255, 0.96); box-shadow: 0 6px 16px rgba(73, 92, 138, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9); cursor: default; } .article-tag-chip:hover { transform: none; color: var(--text); background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.66)); border-color: rgba(255, 255, 255, 0.96); } [data-theme="dark"] .article-tag-chip, [data-theme="dark"] .article-tag-chip:hover { color: var(--text); background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.1)); border-color: rgba(255, 255, 255, 0.22); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.1); } .publication-page-card { scroll-margin-top: 120px; } .publication-page-card-body { padding: 28px 32px; } .publication-page-card .publication-entry { margin-bottom: 0; } .publication-entry { display: flex; flex-direction: column; gap: 7px; margin: 0 0 1.35rem; padding: 2px 0 0 0; } .publication-entry:last-child { margin-bottom: 0; } .publication-heading { display: flex; align-items: flex-start; gap: 14px; } .publication-badges { display: inline-flex; align-items: center; flex: 0 0 auto; flex-wrap: wrap; gap: 6px; max-width: 160px; padding-top: 4px; } .publication-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 25px; padding: 0 11px; border-radius: 999px; background: var(--daily-action-blue-gradient); color: #fff; font-family: var(--font-ui); font-size: 12px; font-weight: 800; line-height: 1; letter-spacing: 0; white-space: nowrap; box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2), inset 0 1px 8px rgba(255, 255, 255, 0.28); } .publication-index { min-width: 34px; } .publication-copy { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 7px; } .publication-title { color: var(--heading); font-size: 1.17rem; line-height: 1.36; } .publication-title strong { font-weight: 700; } .publication-venue { color: var(--muted); font-size: 0.92rem; line-height: 1.46; } .publication-venue em { color: var(--muted); font-style: italic; } .publication-authors { color: var(--text); font-size: 0.92rem; line-height: 1.48; } .publication-authors strong { color: var(--heading); font-weight: 700; } .publication-footer { display: flex; align-items: center; justify-content: flex-start; flex-wrap: wrap; gap: 10px; margin-top: 2px; } .publication-keywords { display: flex; flex-wrap: wrap; gap: 7px; } .publication-keyword { display: inline-flex; align-items: center; justify-content: center; min-height: 28px; padding: 4px 10px; border-radius: 999px; font-family: var(--font-ui); font-size: 12px; font-weight: 500; line-height: 1; text-decoration: none; color: var(--muted); background: var(--well-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--well-border); white-space: nowrap; box-shadow: none; } .prose a.publication-keyword { color: var(--muted); background: var(--well-bg); -webkit-background-clip: border-box; background-clip: border-box; -webkit-text-fill-color: currentColor; text-decoration: none; font-weight: 500; transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, border-color 0.2s ease; } .prose a.publication-keyword:hover { transform: translateY(-1px); color: var(--primary); background: color-mix(in srgb, var(--primary) 8%, var(--well-bg)); border-color: color-mix(in srgb, var(--primary) 28%, var(--well-border)); -webkit-text-fill-color: currentColor; text-decoration: none; filter: none; } .prose a.publication-keyword.is-active { color: #fff; background: var(--daily-action-blue-gradient); border-color: rgba(37, 99, 235, 0.42); -webkit-text-fill-color: currentColor; box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18), inset 0 1px 8px rgba(255, 255, 255, 0.22); } .publication-links { display: flex; align-items: center; gap: 8px; } .prose a.publication-link { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 999px; border: 1px solid var(--well-border); background: var(--well-bg); color: var(--primary); -webkit-background-clip: border-box; background-clip: border-box; -webkit-text-fill-color: currentColor; box-shadow: inset 0 1px 8px var(--well-inner); transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease, color 0.24s ease; } .prose a.publication-link:hover { transform: translateY(-1px); color: #fff; background: var(--daily-action-blue-gradient); border-color: rgba(37, 99, 235, 0.42); filter: none; text-decoration: none; box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2), inset 0 1px 8px rgba(255, 255, 255, 0.28); } .publication-link svg { flex: 0 0 auto; } .publication-link-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } [data-theme="dark"] .publication-badge { box-shadow: 0 7px 18px rgba(37, 99, 235, 0.22), inset 0 1px 8px rgba(255, 255, 255, 0.18); } @media (max-width: 640px) { .publication-page-card-body { padding: 22px 20px; } .publication-heading { flex-direction: column; gap: 8px; } .publication-badges { max-width: 100%; padding-top: 0; } .publication-badge { min-height: 23px; padding: 0 8px; font-size: 11px; } .publication-index { min-width: 31px; } .publication-title { font-size: 1.08rem; } .publication-venue, .publication-authors { font-size: 0.9rem; } .publication-footer { align-items: flex-start; flex-direction: column; } } .prose { font-family: var(--font-body); font-optical-sizing: auto; font-size: 16px; line-height: 1.7; color: var(--text); } .prose p { margin-bottom: 1rem; } .prose ul { padding-left: 1.25rem; margin-bottom: 1rem; list-style-type: disc; } .prose ol { padding-left: 1.25rem; margin-bottom: 1rem; list-style-type: decimal; } .prose li { margin-bottom: 0.5rem; } .prose strong { color: var(--heading); font-weight: 600; } .prose em { color: var(--muted); font-style: italic; } .prose h1, .prose h2, .prose h3, .prose h4 { color: var(--heading); line-height: 1.3; font-weight: 700; } .prose h1 { font-size: 1.8rem; margin-top: 2rem; margin-bottom: 1rem; letter-spacing: -0.02em; } .prose h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; letter-spacing: -0.01em; border-bottom: 1px solid var(--panel-border); padding-bottom: 0.3em; } .prose h3 { font-size: 1.25rem; margin-top: 1.5rem; margin-bottom: 0.75rem; font-weight: 600; } .prose h4 { font-size: 1.1rem; margin-top: 1.25rem; margin-bottom: 0.5rem; font-weight: 600; } .prose p { margin-bottom: 1.25rem; line-height: 1.75; font-size: 1.05rem; } .prose > *:first-child { margin-top: 0; } .prose img { display: block; max-width: 100%; height: auto; margin: 1.5rem auto; border-radius: var(--radius-sm); } .prose .edu-logo { height: 52px; width: auto; max-width: none; margin: 0; border-radius: 0; } .prose blockquote { margin: 1.5rem 0; padding: 0.5rem 1.25rem; background: var(--well-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-left: 4px solid var(--primary); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--muted); font-style: italic; border: 1px solid var(--well-border); border-left: 4px solid var(--primary); } .prose blockquote p { margin-top: 0.5rem; margin-bottom: 0.5rem; } .prose blockquote p:last-child { margin-bottom: 0.5rem; } .code-block-container { border: 1px solid var(--panel-border); border-radius: var(--radius); overflow: hidden; margin: 1.5rem 0; background: var(--panel-bg); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); display: flex; flex-direction: column; transition: all 0.3s ease; min-height: 50px; box-shadow: inset 0 1px 8px var(--panel-inner); } .code-block-container.maximized .code-content-wrapper { flex: 1; } .code-block-container.maximized { position: fixed; top: 20px; left: 20px; right: 20px; bottom: 20px; z-index: 10500; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); margin: 0; background: var(--panel-bg); } .code-block-container.collapsed .code-content-wrapper { display: none; } .code-header { display: flex; align-items: center; justify-content: space-between; background: rgba(224, 242, 254, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); padding: 0.6rem 1rem; border-bottom: 1px solid var(--panel-border); } [data-theme="dark"] .code-header { background: rgba(30, 58, 138, 0.3); } .code-dots { display: flex; gap: 8px; } .code-dot { width: 12px; height: 12px; border-radius: 50%; border: none; outline: none; cursor: pointer; padding: 0; transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); } .code-dot:hover { transform: scale(1.2); } .code-dot.close { background-color: #ff5f56; } .code-dot.min { background-color: #ffbd2e; cursor: default; } .code-dot.min:hover { transform: none; } .code-dot.max { background-color: #27c93f; } .code-lang { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 0.75rem; color: var(--text); text-transform: uppercase; font-weight: 600; letter-spacing: 0.05em; opacity: 0.7; } .code-content-wrapper { overflow: auto; } .prose pre { display: block; width: 100%; min-height: 20px; margin: 0; padding: 0; background: transparent; border: none; } .prose pre code { display: block; padding: 1rem; overflow-x: auto; font-family: var(--font-code); font-feature-settings: 'calt' 1; font-size: 0.9em; line-height: 1.5; background: transparent; color: inherit; border-radius: 0; } .prose code { font-family: var(--font-code); font-feature-settings: 'calt' 1; background: var(--well-bg); padding: 0.2em 0.4em; border-radius: 4px; font-size: 0.9em; color: var(--primary); border: 1px solid var(--well-border); -webkit-box-decoration-break: clone; box-decoration-break: clone; } .prose pre code.hljs { background: transparent; padding: 1rem; } .prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border: 1px solid var(--panel-border); border-radius: var(--radius); overflow: hidden; background: var(--panel-bg); backdrop-filter: blur(16px) saturate(180%); -webkit-backdrop-filter: blur(16px) saturate(180%); box-shadow: inset 0 1px 8px var(--panel-inner); font-size: 0.95em; } .prose thead { background: rgba(224, 242, 254, 0.4); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--panel-border); } [data-theme="dark"] .prose thead { background: rgba(30, 58, 138, 0.3); } .prose th { padding: 0.6rem 1rem; font-weight: 600; text-align: left; color: var(--heading); font-size: 0.85em; text-transform: uppercase; letter-spacing: 0.03em; } .prose td { padding: 0.6rem 1rem; border-top: 1px solid var(--panel-border); color: var(--text); } .prose tbody tr:hover { background: var(--well-bg); } .github-repo-card { display: block; text-decoration: none !important; background: var(--well-bg); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid var(--well-border); border-radius: var(--radius); padding: 16px 20px; margin: 1.5rem 0; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); box-shadow: inset 0 1px 8px var(--well-inner), 0 4px 16px rgba(73, 92, 138, 0.08); } .github-repo-card:hover { border-color: rgba(59, 130, 246, 0.3); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(59, 130, 246, 0.1), inset 0 2px 12px var(--well-inner); } .github-repo-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: var(--heading); font-weight: 600; font-size: 1.15rem; } .github-repo-top svg { color: var(--text); } .github-repo-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.5; } .github-repo-stats { display: flex; align-items: center; gap: 16px; color: var(--text); font-size: 0.85rem; } .github-repo-stat { display: flex; align-items: center; gap: 4px; font-weight: 500; } .github-repo-stat svg { color: var(--muted); } @keyframes pageLoad { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } } .container.main-grid:not(.home-layout), .page-shell, .upload-grid { animation: pageLoad 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .nav-links { --nav-visibility-delay: 0s; display: flex; align-items: center; gap: 8px; min-width: 0; max-width: 640px; font-weight: 600; transform-origin: right center; transition: max-width 0.42s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.28s ease, transform 0.36s cubic-bezier(0.2, 0.8, 0.2, 1), gap 0.28s ease, visibility 0s linear var(--nav-visibility-delay); } .nav-island:not(.search-mode) .nav-links { --nav-visibility-delay: 0.16s; } .nav-links a { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 14px; border-radius: 999px; border: 1px solid transparent; color: var(--heading); opacity: 0.84; transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease; position: relative; } .nav-links a::after { content: none; } .nav-links a:hover, .nav-links a[data-active="true"] { opacity: 1; transform: translateY(-1px); background: var(--link-gradient), rgba(255, 255, 255, 0.12); -webkit-background-clip: text, border-box; background-clip: text, border-box; -webkit-text-fill-color: transparent; color: transparent; border-color: rgba(255, 255, 255, 0.18); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 18px rgba(99, 112, 158, 0.08); } .nav-links a[data-active="true"] { background: var(--link-gradient), rgba(255, 255, 255, 0.18); -webkit-background-clip: text, border-box; background-clip: text, border-box; -webkit-text-fill-color: transparent; color: transparent; } .nav-divider { width: 1px; height: 28px; flex-shrink: 0; background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0)); transition: opacity 0.28s ease, transform 0.28s ease, margin 0.28s ease, width 0.28s ease; } .prose a { background: var(--link-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; font-weight: 500; transition: filter 0.3s ease; } .prose a:hover { filter: brightness(1.2); text-decoration: underline; text-decoration-color: #2563eb; -webkit-text-fill-color: transparent; } .article-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: stretch; } @media (min-width: 1024px) { .article-grid { grid-template-columns: 1fr 240px; } } @media (min-width: 1024px) { .article-grid.daily-grid { grid-template-columns: minmax(0, 1fr) 300px; } } .toc { padding: 20px; background: var(--well-bg); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid var(--well-border); border-radius: var(--radius); box-shadow: inset 0 1px 8px var(--well-inner), 0 4px 16px rgba(73, 92, 138, 0.08); } .toc-title { font-size: 14px; font-weight: 700; color: var(--heading); margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.05em; } .toc ul { list-style: none; padding: 0; margin: 0; } .toc li { margin-bottom: 8px; font-size: 14px; } .toc a { background: var(--link-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; transition: all 0.3s ease; display: block; } .toc a:hover { filter: brightness(1.2); padding-left: 4px; } .upload-grid { display: grid; gap: 32px; grid-template-columns: 1fr; margin-top: 0; } @media (min-width: 860px) { .upload-grid { grid-template-columns: 320px 1fr; } } .drop-zone { border: 2px dashed var(--well-border); border-radius: var(--radius); padding: 40px 24px; text-align: center; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); cursor: pointer; background: var(--well-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); position: relative; overflow: hidden; } .drop-zone:hover, .drop-zone.drag { border-color: var(--primary); background: rgba(59, 130, 246, 0.06); border-style: solid; } .drop-zone input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; } .file-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; min-width: 0; padding: 12px; margin-bottom: 8px; background: var(--well-bg); border: 1px solid var(--well-border); border-radius: var(--radius-xs); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); } .file-item--directory, .file-item--parent { cursor: pointer; } .file-item--directory:hover, .file-item--parent:hover { border-color: color-mix(in srgb, var(--primary) 32%, var(--well-border)); background: color-mix(in srgb, var(--primary) 5%, var(--well-bg)); } .file-item-main { display: grid; grid-template-columns: 40px minmax(0, 1fr); align-items: center; gap: 12px; min-width: 0; } .file-leading-icon { position: relative; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); border: 1px solid color-mix(in srgb, currentColor 18%, transparent); border-radius: 10px; background: color-mix(in srgb, currentColor 8%, transparent); text-decoration: none; } .file-leading-icon > svg { width: 24px; height: 24px; } .file-leading-icon--download { cursor: pointer; transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease; } .file-leading-icon--download:hover { transform: translateY(-1px); border-color: color-mix(in srgb, currentColor 38%, transparent); background: color-mix(in srgb, currentColor 14%, transparent); } .file-leading-icon--download:focus-visible, .file-item-name--link:focus-visible, .file-action-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; } .file-gallery-badge, .file-download-badge { position: absolute; right: -5px; top: -5px; display: inline-flex; align-items: center; justify-content: center; } .file-download-badge { width: 17px; height: 17px; border: 2px solid var(--surface); border-radius: 999px; background: var(--primary); } .file-download-badge svg { color: white; stroke-width: 2.5; } .file-kind-folder { color: #3b82f6; } .file-kind-image { color: #0f9f78; } .file-kind-pdf { color: #dc4c4c; } .file-kind-document { color: #3478c9; } .file-kind-spreadsheet { color: #15825f; } .file-kind-presentation { color: #d66b2c; } .file-kind-archive { color: #b7791f; } .file-kind-audio { color: #8b5cf6; } .file-kind-video { color: #db4f86; } .file-kind-code { color: #0f91a8; } .file-kind-text { color: #64748b; } .file-kind-file { color: var(--muted); } .file-item-copy { min-width: 0; overflow: hidden; } .file-item-name { display: block; min-width: 0; overflow: hidden; color: var(--heading); font-size: 16px; font-weight: 500; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; } .file-item-name--link { width: fit-content; max-width: 100%; text-decoration: none; cursor: pointer; } .file-item-name--link:hover { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; } .file-item-meta { margin-top: 3px; overflow: hidden; color: var(--muted); font-size: 12px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; } .file-item-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; } .file-action-btn { width: 36px; height: 36px; padding: 0; align-items: center; justify-content: center; border: 1px solid transparent; } .file-action-btn:hover { color: var(--primary); border-color: color-mix(in srgb, var(--primary) 18%, transparent); background: color-mix(in srgb, var(--primary) 8%, transparent); } .file-action-btn--danger:hover { color: var(--danger); border-color: color-mix(in srgb, var(--danger) 18%, transparent); background: color-mix(in srgb, var(--danger) 8%, transparent); } .upload-sidebar .home-liquid-body { padding: 24px; } .upload-sidebar #uploadSidebar { position: sticky; top: 100px; } .upload-section-title { margin-top: 0; font-size: 18px; color: var(--heading); } .upload-path-block { margin-bottom: 16px; } .upload-path-label { font-weight: 600; margin-bottom: 8px; font-size: 14px; color: var(--muted); } .upload-path-bar { display: flex; gap: 8px; align-items: center; background: var(--surface-highlight); padding: 8px; border-radius: var(--radius-xs); font-family: var(--font-code); overflow-x: auto; } .upload-folder-row { display: flex; gap: 8px; margin-bottom: 16px; } .upload-folder-input { width: 100%; padding: 8px; border: 1px solid var(--border); border-radius: var(--radius-xs); background: var(--surface); color: var(--text); } .upload-folder-add { padding: 0 12px; width: auto; } .upload-drop-zone { border: 2px dashed var(--well-border); border-radius: 12px; padding: 24px; text-align: center; background: transparent; transition: all 0.2s ease; cursor: pointer; } .upload-drop-icon { color: var(--primary); margin-bottom: 12px; } .upload-drop-text { margin: 0; font-weight: 600; color: var(--text); font-size: 15px; } .upload-file-input { display: none; } .upload-queue-info { margin-top: 16px; font-size: 14px; text-align: center; color: var(--muted); } .upload-start { margin-top: 16px; width: 100%; } .upload-panel .home-glass-body, .upload-panel-body { padding: 32px; min-height: 400px; } .upload-panel-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; } .upload-panel-title { margin: 0; font-size: 20px; color: var(--heading); } .upload-toast { position: fixed; bottom: 80px; left: 50%; right: auto; transform: translateX(-50%); z-index: 10000; } .upload-meta-card { padding: 0; max-width: 500px; width: 90%; } .upload-meta-body { padding: 32px; } .upload-meta-desc { resize: vertical; } .upload-meta-actions { display: flex; justify-content: flex-end; gap: 8px; } .upload-meta-cancel { background: var(--surface-highlight); color: var(--text); } .upload-field-hint { margin: 7px 0 0; color: var(--muted); font-size: 12px; line-height: 1.45; } @media (max-width: 640px) { .upload-panel .home-glass-body, .upload-panel-body { padding: 18px 14px; } .upload-panel-header { margin-bottom: 16px; } .file-item { gap: 6px; padding: 10px 8px; } .file-item-main { grid-template-columns: 38px minmax(0, 1fr); gap: 10px; } .file-leading-icon { width: 38px; height: 38px; } .file-item-actions { gap: 1px; } .file-action-btn { width: 34px; height: 34px; } } .login-shell { display: flex; justify-content: center; padding-top: 80px; } .login-card { width: 100%; max-width: 420px; } .login-body { padding: 40px; } .login-title { margin: 0 0 8px; font-size: 24px; color: var(--heading); } .login-subtitle { color: var(--muted); margin: 0 0 32px; } .login-submit { width: 100%; } .form-row { margin-bottom: 20px; } .form-row--last { margin-bottom: 32px; } .form-label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text); } .error-shell { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 50vh; text-align: center; } .error-code { font-size: 4rem; font-weight: 700; color: var(--heading); margin-bottom: 8px; } .error-message { font-size: 1.2rem; color: var(--muted); margin-bottom: 24px; } .error-action { text-decoration: none; } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-xs); font-weight: 500; cursor: pointer; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); font-size: 14px; text-decoration: none; border: none; } .btn-primary { background: var(--primary); color: white; box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25); } .btn-block { width: 100%; } .btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35); } .btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25); } .btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; } .form-input { width: 100%; padding: 10px 12px; border-radius: var(--radius-xs); font-size: 16px; font-family: inherit; background: rgba(255, 255, 255, 0.5); color: var(--heading); border: 1px solid rgba(59, 130, 246, 0.22); box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04); transition: border-color 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s ease; } .form-input::placeholder { color: var(--muted); opacity: 0.7; } .form-input:hover { border-color: rgba(59, 130, 246, 0.4); } .form-input:focus { outline: none; border-color: var(--primary); background: rgba(255, 255, 255, 0.78); box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18), inset 0 1px 2px rgba(15, 23, 42, 0.04); } [data-theme="dark"] .form-input { background: rgba(255, 255, 255, 0.06); color: var(--heading); border-color: rgba(96, 165, 250, 0.3); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2); } [data-theme="dark"] .form-input:hover { border-color: rgba(96, 165, 250, 0.5); } [data-theme="dark"] .form-input:focus { background: rgba(255, 255, 255, 0.1); border-color: var(--primary); box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.24), inset 0 1px 2px rgba(0, 0, 0, 0.2); } .action-btn { background: transparent; border: none; padding: 6px; border-radius: var(--radius-xs); cursor: pointer; color: var(--muted); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.2s ease; display: inline-flex; } .site-header .action-btn { position: relative; width: 42px; height: 42px; padding: 0; align-items: center; justify-content: center; color: var(--heading); border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.08); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 18px rgba(99, 112, 158, 0.08); backdrop-filter: none; -webkit-backdrop-filter: none; } .site-header .action-btn:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.24); color: var(--heading); transform: translateY(-1px) scale(1.01); } .action-btn.danger:hover { background: color-mix(in srgb, var(--danger) 10%, transparent); color: var(--danger); } .toast { position: fixed; bottom: 32px; right: 32px; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(16px) saturate(1.5); -webkit-backdrop-filter: blur(16px) saturate(1.5); color: white; padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 500; opacity: 0; transform: translateY(20px) scale(0.95); transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); pointer-events: none; z-index: 100; font-size: 14px; border: 1px solid rgba(255, 255, 255, 0.1); } .toast.show { opacity: 1; transform: translateY(0) scale(1); } .lightbox-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); z-index: 10000; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.4s ease; } .lightbox-overlay.active { display: flex; opacity: 1; } .lightbox-content { max-width: 95vw; max-height: 95vh; border-radius: var(--radius); box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2); transform: scale(0.92) translateY(10px); transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); background: var(--panel-bg); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); border: 1px solid var(--panel-border); } .lightbox-overlay.active .lightbox-content { transform: scale(1) translateY(0); } .lightbox-close { position: absolute; top: 20px; right: 30px; color: white; font-size: 50px; cursor: pointer; z-index: 10001; line-height: 0.8; background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: none; padding: 8px 16px; border-radius: 50%; font-family: serif; opacity: 0.8; transition: all 0.3s ease; } .lightbox-close:hover { opacity: 1; background: rgba(0, 0, 0, 0.5); transform: scale(1.1); } .news-modal-overlay { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: clamp(18px, 4vw, 42px); background: rgba(15, 23, 42, 0.34); backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%); opacity: 0; visibility: hidden; transition: opacity 0.28s ease, visibility 0s linear 0.28s; } .news-modal-overlay.is-active { opacity: 1; visibility: visible; transition-delay: 0s, 0s; } .news-modal-card { width: min(760px, calc(100vw - 32px)); max-height: min(82vh, 760px); overflow: auto; border-radius: calc(var(--radius) + 8px); border: 1px solid rgba(255, 255, 255, 0.62); background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.76) 52%, rgba(219, 234, 254, 0.82)); box-shadow: 0 30px 82px rgba(15, 23, 42, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.86); transform: translateY(12px) scale(0.96); transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1); } .news-modal-overlay.is-active .news-modal-card { transform: translateY(0) scale(1); } .news-modal-header { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 26px 16px; border-bottom: 1px solid rgba(148, 163, 184, 0.2); background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); } .news-modal-title { margin: 0; font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; letter-spacing: 0; color: var(--heading); } .news-modal-close { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex: 0 0 36px; border-radius: 50%; border: 1px solid rgba(148, 163, 184, 0.28); background: rgba(255, 255, 255, 0.72); color: var(--muted); cursor: pointer; font-family: var(--font-sans); font-size: 24px; line-height: 1; position: relative; transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease; } .news-modal-close:hover { transform: translateY(-1px); color: var(--heading); border-color: rgba(37, 99, 235, 0.28); background: rgba(219, 234, 254, 0.76); } .news-modal-body { padding: 0; } .news-modal-status { padding: 32px 34px; color: var(--muted); } .home-news-modal-content { padding: 8px 34px 32px; } .home-news-modal-content ul { list-style: none; padding: 0; margin: 0; } .home-news-modal-content li { margin: 0; padding: 16px 0; color: var(--muted); font-size: 15px; line-height: 1.65; border-bottom: 1px solid rgba(148, 163, 184, 0.18); } .home-news-modal-content li:last-child { border-bottom: 0; } .home-news-modal-content p { margin: 0; } .home-news-modal-content strong { color: var(--heading); font-weight: 650; } .home-news-modal-content a { color: #2563eb; text-decoration: none; } .home-news-modal-content a:hover { text-decoration: underline; } [data-theme="dark"] .news-modal-card { border-color: rgba(255, 255, 255, 0.16); background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.84) 52%, rgba(15, 23, 42, 0.9)); box-shadow: 0 30px 82px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.08); } [data-theme="dark"] .news-modal-header { border-bottom-color: rgba(255, 255, 255, 0.1); background: rgba(15, 23, 42, 0.78); } [data-theme="dark"] .news-modal-close { border-color: rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.08); color: var(--muted); } [data-theme="dark"] .news-modal-close:hover { color: var(--heading); border-color: rgba(96, 165, 250, 0.32); background: rgba(59, 130, 246, 0.18); } [data-theme="dark"] .home-news-modal-content li { border-bottom-color: rgba(255, 255, 255, 0.1); } @media (max-width: 640px) { .news-modal-overlay { align-items: stretch; padding: 14px; } .news-modal-card { width: 100%; max-height: calc(100vh - 28px); border-radius: calc(var(--radius) + 2px); } .news-modal-header { padding: 18px 18px 14px; } .home-news-modal-content { padding: 4px 20px 26px; } .home-news-modal-content li { font-size: 14px; } } .nav-actions { display: flex; align-items: center; gap: 6px; flex-shrink: 0; } .search-trigger { overflow: hidden; transition: width 0.28s ease, opacity 0.2s ease, transform 0.2s ease, margin 0.2s ease, border-color 0.2s ease, background 0.2s ease; } .nav-mobile-trigger { display: none; } .search-bar-container { position: relative; flex: 0 1 0; max-width: 0; min-width: 0; height: 44px; opacity: 0; visibility: hidden; pointer-events: none; display: flex; align-items: center; overflow: visible; border-radius: 999px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 18px rgba(99, 112, 158, 0.08); transition: max-width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.24s ease, margin 0.24s ease, transform 0.24s ease; } .search-bar-icon { margin-left: 14px; margin-right: 8px; flex-shrink: 0; color: var(--muted); } .search-input { background: transparent; border: none; outline: none; font-size: 15px; width: 100%; min-width: 0; color: var(--text); height: 100%; } .search-close-btn { background: none; border: none; cursor: pointer; color: var(--muted); width: 44px; height: 44px; flex: 0 0 44px; padding: 0; font-size: 20px; line-height: 1; display: inline-flex; align-items: center; justify-content: center; } .nav-island.search-mode .search-bar-container { flex: 1 1 clamp(240px, 36vw, 430px); max-width: clamp(240px, 36vw, 430px); opacity: 1; visibility: visible; pointer-events: auto; } .nav-island.search-mode .nav-links { max-width: 0; opacity: 0; gap: 0; pointer-events: none; visibility: hidden; transform: translateX(18px) scale(0.96); } .nav-island.search-mode .nav-divider { width: 0; opacity: 0; transform: scaleY(0.4); margin: 0 -6px 0 0; } .nav-island.search-mode .search-trigger { width: 0; min-width: 0; padding: 0; border-width: 0; opacity: 0; pointer-events: none; margin: 0; } .search-dropdown { position: absolute; top: calc(100% + 12px); right: 0; width: 100%; background: var(--panel-bg); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid var(--panel-border); border-radius: var(--radius); box-shadow: 0 8px 32px rgba(73, 92, 138, 0.12), inset 0 1px 8px var(--panel-inner); max-height: 400px; overflow-y: auto; opacity: 0; transform: translateY(-10px) scale(0.98); pointer-events: none; transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); } .search-dropdown.has-results { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; } .nav-mobile-panel { display: none; position: absolute; top: calc(100% + 14px); right: 0; width: min(100%, 340px); border-radius: calc(var(--radius) + 10px); overflow: hidden; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px) scale(0.96); transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1); } .nav-mobile-panel.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); } .nav-mobile-panel:not(.open) { transition: opacity 0.24s ease, transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.32s; } .nav-mobile-panel-body { position: relative; z-index: 5; padding: 18px; } .nav-mobile-links { display: grid; gap: 10px; } .nav-mobile-link { display: flex; align-items: center; min-height: 46px; padding: 0 16px; border-radius: calc(var(--radius-sm) + 4px); border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.08); color: var(--heading); font-weight: 600; transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease; } .nav-mobile-link:hover, .nav-mobile-link[data-active="true"] { transform: translateY(-1px); background: var(--link-gradient), rgba(255, 255, 255, 0.16); -webkit-background-clip: text, border-box; background-clip: text, border-box; -webkit-text-fill-color: transparent; color: transparent; border-color: rgba(255, 255, 255, 0.24); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 20px rgba(99, 112, 158, 0.08); } [data-theme="dark"] .nav-links a:hover, [data-theme="dark"] .nav-links a[data-active="true"], [data-theme="dark"] .nav-mobile-link:hover, [data-theme="dark"] .nav-mobile-link[data-active="true"] { background: linear-gradient(135deg, #93c5fd, #60a5fa), rgba(255, 255, 255, 0.08); -webkit-background-clip: text, border-box; background-clip: text, border-box; -webkit-text-fill-color: transparent; color: transparent; border-color: rgba(255, 255, 255, 0.14); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 10px 20px rgba(0, 0, 0, 0.2); } [data-theme="dark"] .site-header .action-btn, [data-theme="dark"] .search-bar-container, [data-theme="dark"] .nav-mobile-link { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.12); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 18px rgba(0, 0, 0, 0.22); } [data-theme="dark"] .site-header .action-btn:hover { background: rgba(255, 255, 255, 0.08); } [data-theme="dark"] .nav-divider { background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0)); } [data-theme="dark"] .nav-island .nav-island-warp { background: radial-gradient(76% 190% at 18% -82%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.035) 44%, transparent 72%), linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(148, 163, 184, 0.012) 48%, rgba(15, 23, 42, 0.08) 100%); } [data-theme="dark"] .nav-island.home-liquid-card { --liquid-content-tint: rgba(2, 6, 23, 0.08); --liquid-inner-highlight: rgba(255, 255, 255, 0.18); --liquid-inner-shadow: rgba(0, 0, 0, 0.14); --liquid-clear-layer: rgba(255, 255, 255, 0.18); --liquid-saturation: 158%; --liquid-brightness: 1.004; --liquid-displacement-scale: 18; --liquid-aberration: 1.0; --liquid-nav-idle-glow: 0.52; --liquid-nav-hover-glow: 0.56; --liquid-nav-caustic-opacity: 0.2; --liquid-nav-refraction: 0.48; --nav-idle-blur: 14px; --nav-idle-saturation: 144%; --nav-idle-brightness: 1; border-color: rgba(255, 255, 255, 0.2); backdrop-filter: blur(22px) saturate(158%) contrast(1.03) brightness(0.96); -webkit-backdrop-filter: blur(22px) saturate(158%) contrast(1.03) brightness(0.96); background: radial-gradient(120% 170% at 16% -92%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.025) 46%, transparent 68%), linear-gradient(180deg, rgba(20, 30, 48, 0.34), rgba(5, 10, 20, 0.22)); box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3), 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.3), inset 0 -12px 24px rgba(0, 0, 0, 0.12); } [data-theme="dark"] .nav-island.home-liquid-card:hover { transform: none; border-color: rgba(255, 255, 255, 0.25); box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34), 0 4px 12px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22), inset 0 -1px 0 rgba(0, 0, 0, 0.34), inset 0 -12px 24px rgba(0, 0, 0, 0.14); } [data-theme="dark"] .nav-island.home-liquid-card::before { background: radial-gradient(34% 145% at 17% -42%, rgba(255, 255, 255, 0.28) 0%, rgba(203, 213, 225, 0.08) 36%, transparent 68%), radial-gradient(26% 120% at 89% 132%, rgba(96, 165, 250, 0.11) 0%, rgba(96, 165, 250, 0.025) 42%, transparent 72%), linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 46%, rgba(0, 0, 0, 0.12)); } [data-theme="dark"] .nav-island.home-liquid-card::after { background: linear-gradient(112deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.28) 12%, rgba(148, 163, 184, 0.14) 33%, rgba(15, 23, 42, 0.12) 62%, rgba(255, 255, 255, 0.2) 86%, rgba(255, 255, 255, 0.06) 100%); } [data-theme="dark"] .nav-island .home-liquid-warp::before { background: radial-gradient(30% 175% at 16% -42%, rgba(255, 255, 255, 0.25) 0%, rgba(203, 213, 225, 0.065) 34%, transparent 68%), linear-gradient(104deg, rgba(255, 255, 255, 0.055) 0%, rgba(148, 163, 184, 0.008) 36%, rgba(96, 165, 250, 0.02) 66%, rgba(255, 255, 255, 0.04) 100%); } [data-theme="dark"] .nav-island .home-liquid-warp::after { background: radial-gradient(110% 150% at 50% -82%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.014) 48%, transparent 70%), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.012) 15%, transparent 50%, rgba(15, 23, 42, 0.07) 78%, rgba(255, 255, 255, 0.13) 100%), linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.13) 100%); } .resume-card .home-glass-body, .resume-body { padding: 40px; } .resume-hero { margin-bottom: 24px; } .resume-hero .home-glass-body { padding: 28px 32px; } .resume-back { margin-bottom: 20px; } .resume-back-link { text-decoration: none; padding-left: 0; color: var(--text); font-weight: 500; } .resume-title { font-size: 2.5rem; font-weight: 600; margin: 0 0 12px 0; line-height: 1.2; color: var(--heading); } .resume-subtitle { color: var(--muted); font-size: 15px; margin: 0 0 8px 0; line-height: 1.6; } .resume-pdf-wrapper { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px var(--home-material-shadow); background: var(--home-material-face-bottom); backdrop-filter: blur(18px) saturate(165%); -webkit-backdrop-filter: blur(18px) saturate(165%); border: 1px solid var(--home-material-edge); } .resume-pdf-iframe { width: 100%; height: min(80vh, 1000px); border: none; display: block; } .resume-pdf-footer { margin-top: 16px; text-align: center; color: var(--muted); font-size: 14px; } .gallery-album { margin: 0; } .gallery-album--focused { margin-bottom: 60px; } .gallery-album--list { margin-bottom: 24px; } .gallery-album-card { padding: 0; } .gallery-album-card .home-glass-body { padding: 28px 32px; } .gallery-album-card--focused .home-glass-body { padding: 40px; } .gallery-hero { margin-bottom: 24px; } .gallery-hero .home-glass-body { padding: 28px 32px; } .gallery-back { margin-bottom: 20px; } .gallery-back-link { text-decoration: none; padding-left: 0; color: var(--text); font-weight: 500; } .gallery-hero-title { font-size: 2.5rem; font-weight: 600; margin: 0 0 12px 0; text-transform: capitalize; line-height: 1.2; color: var(--heading); } .gallery-hero-meta { margin-bottom: 12px; } .gallery-hero-desc { color: var(--text); font-size: 1rem; margin: 0 0 24px 0; line-height: 1.6; } .gallery-list-head { margin-bottom: 16px; } .gallery-list-title { font-size: 1.5rem; font-weight: 700; margin: 0 0 12px 0; text-transform: capitalize; line-height: 1.2; color: var(--heading); } .gallery-list-meta { margin-bottom: 12px; } .gallery-list-desc { color: var(--text); font-size: 15px; margin: 0 0 16px 0; line-height: 1.6; } .gallery-carousel-wrapper { box-shadow: none; border: none; padding: 0; background: transparent; } .gallery-lightbox { display: none; } footer { text-align: center; padding: 40px 0; color: var(--muted); font-size: 14px; margin-top: 40px; background: transparent; } .gallery-list { display: flex; flex-direction: column; gap: 24px; } .gallery-album { display: flex; flex-direction: column; gap: 24px; margin: 0; } .carousel-container { overflow-x: auto; display: flex; gap: 16px; padding: 0 0 12px 0; align-items: center; scrollbar-width: thin; scrollbar-color: var(--muted) transparent; } .carousel-wrapper.focused .carousel-container { flex-wrap: wrap; justify-content: center; gap: 16px; padding: 0; height: auto; overflow-x: visible; align-items: flex-start; } .carousel-wrapper.focused .carousel-container::-webkit-scrollbar { display: none; } .carousel-container::-webkit-scrollbar { height: 6px; } .carousel-container::-webkit-scrollbar-track { background: transparent; } .carousel-container::-webkit-scrollbar-thumb { background-color: var(--muted); border-radius: 3px; } .carousel-container::-webkit-scrollbar-thumb:hover { background-color: var(--text); } @keyframes gallery-toast-in { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } } .carousel-wrapper { background: var(--panel-bg); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border: 1px solid var(--panel-border); box-shadow: inset 0 1px 8px var(--panel-inner), 0 4px 16px rgba(73, 92, 138, 0.08); border-radius: var(--radius); padding: 20px 0; overflow: hidden; transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1); } .carousel-wrapper.focused { background: var(--panel-bg); border: 1px solid var(--panel-border); box-shadow: inset 0 2px 16px var(--panel-inner), 0 8px 24px rgba(73, 92, 138, 0.12); border-radius: var(--radius); padding: 32px; width: 100%; } .carousel-slide { flex: 0 0 auto; height: 500px; border-radius: var(--radius-sm); overflow: hidden; transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1); cursor: pointer; border: 1px solid var(--panel-border); } .carousel-wrapper.focused .carousel-slide { height: 280px; border-radius: var(--radius-sm); box-shadow: inset 0 1px 4px var(--panel-inner); opacity: 1; } .carousel-wrapper.focused .carousel-slide:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); } .carousel-slide img { height: 100%; width: auto; object-fit: contain; display: block; } @media (max-width: 1040px) { .nav-cluster { width: 100%; } .nav-brand-label-full { display: none; } .nav-brand-label-short { display: inline; } } @media (max-width: 920px) { .nav-island { padding-right: 10px; } .nav-links a { padding: 0 12px; font-size: 14px; } } @media (max-width: 820px) { .site-header { top: 12px; margin: 14px 0 28px; } .nav-island { border-radius: calc(var(--radius) + 8px); padding: 8px 10px 8px 14px; } .nav-island-body { gap: 12px; min-height: 52px; } .nav-links-desktop, .nav-divider { display: none; } .nav-mobile-trigger { display: inline-flex; } .nav-mobile-panel { display: block; } .nav-main { gap: 8px; } .nav-brand { padding-right: 0; } .nav-island.search-mode .nav-brand-label { display: none; } .nav-island.search-mode .search-bar-container { flex-basis: min(100%, 240px); max-width: min(100%, 240px); } } @media (max-width: 640px) { .site-header { margin-bottom: 24px; } .nav-cluster { width: 100%; } .nav-brand-label-short { max-width: 108px; overflow: hidden; text-overflow: ellipsis; } .nav-mobile-panel { left: 0; right: 0; width: 100%; } .nav-island.search-mode .search-bar-container { flex-basis: min(100%, 180px); max-width: min(100%, 180px); } } .edu-timeline { position: relative; padding: 4px 0; } .edu-timeline-item { display: grid; grid-template-columns: 150px 40px 1fr; align-items: start; position: relative; } .edu-timeline-item + .edu-timeline-item { margin-top: 32px; } .edu-timeline-item::after { content: ''; position: absolute; left: calc(150px + 19px); top: 22px; bottom: -32px; width: 2px; background: linear-gradient(180deg, var(--primary) 0%, var(--panel-border) 100%); opacity: 0.35; z-index: 1; } .edu-timeline-item:last-child::after { display: none; } .edu-timeline-date { text-align: right; padding-right: 16px; padding-top: 2px; font-size: 0.88rem; color: var(--muted); font-weight: 500; line-height: 1.6; letter-spacing: 0.01em; } .edu-timeline-marker { display: flex; justify-content: center; padding-top: 5px; position: relative; z-index: 2; } .edu-timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--bg); border: 2.5px solid var(--panel-border); transition: all 0.3s ease; } .edu-timeline-item.is-active .edu-timeline-dot { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15); } .edu-timeline-content { padding-left: 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; } .edu-timeline-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; } .edu-institution { font-size: 1.08rem; font-weight: 600; color: var(--heading); letter-spacing: -0.01em; line-height: 1.4; } .edu-logo-group { display: flex; gap: 10px; align-items: center; flex-shrink: 0; margin-top: -14px; } .edu-logo { height: 52px; width: auto; object-fit: contain; opacity: 0.85; transition: opacity 0.3s ease, transform 0.3s ease; filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.06)); } .edu-logo:hover { opacity: 1; transform: scale(1.08); } .edu-role { font-size: 0.95rem; color: var(--text); line-height: 1.65; margin: 0; } .edu-role a { background: var(--link-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; font-weight: 500; transition: filter 0.3s ease; } .edu-role a:hover { filter: brightness(1.2); text-decoration: underline; text-decoration-color: #2563eb; -webkit-text-fill-color: transparent; } [data-theme="dark"] .edu-timeline-item::after { background: linear-gradient(180deg, var(--primary) 0%, rgba(255, 255, 255, 0.08) 100%); opacity: 0.3; } [data-theme="dark"] .edu-timeline-dot { background: var(--bg); border-color: rgba(255, 255, 255, 0.2); } [data-theme="dark"] .edu-timeline-item.is-active .edu-timeline-dot { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2); } [data-theme="dark"] .edu-logo { filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3)) brightness(1.15); } @media (max-width: 800px) { .carousel-slide { height: 300px; } .carousel-wrapper.focused .carousel-slide { height: 200px; } .page-shell { gap: 28px; padding-bottom: 40px; } .edu-timeline-item { grid-template-columns: 28px 1fr; gap: 0; } .edu-timeline-date { grid-column: 2; grid-row: 1; text-align: left; padding: 0 0 4px 12px; font-size: 0.82rem; } .edu-timeline-marker { grid-column: 1; grid-row: 1 / span 2; padding-top: 4px; } .edu-timeline-content { grid-column: 2; grid-row: 2; padding-left: 12px; } .edu-timeline-item::after { left: 13px; } .edu-timeline-item + .edu-timeline-item { margin-top: 24px; } .edu-institution { font-size: 1rem; } .edu-timeline-content { gap: 12px; } .edu-logo { height: 48px; } .prose .edu-logo { height: 48px; } .home-layout { gap: 28px; padding-bottom: 48px; } .home-liquid-card, .home-glass, .home-content, .nav-mobile-panel, .lightbox-content { border-radius: calc(var(--radius) + 6px); background: var(--panel-bg); backdrop-filter: blur(18px) saturate(165%); -webkit-backdrop-filter: blur(18px) saturate(165%); border: 1px solid var(--panel-border); box-shadow: 0 12px 24px rgba(73, 92, 138, 0.075), inset 0 1px 0 var(--panel-inner); } .home-liquid-card, .nav-mobile-panel { backdrop-filter: blur(18px) saturate(165%); -webkit-backdrop-filter: blur(18px) saturate(165%); } .home-profile-card, .home-news-card { background: var(--well-bg); border-color: var(--well-border); box-shadow: 0 12px 22px rgba(73, 92, 138, 0.065), inset 0 1px 0 var(--well-inner); } .home-liquid-card::before, .home-liquid-card::after, .home-liquid-warp, .home-liquid-warp::before, .home-liquid-warp::after, .home-glass::before, .home-glass::after { display: none !important; } .home-liquid-card:hover, .home-glass:hover, .home-content:hover { transform: none; box-shadow: 0 12px 24px rgba(73, 92, 138, 0.075), inset 0 1px 0 var(--panel-inner); } .home-liquid-card { --liquid-radius: 26px; --liquid-blur: 20px; --liquid-displacement-scale: 21; --liquid-aberration: 1.45; border-radius: calc(var(--radius) + 6px); } .home-glass { border-radius: calc(var(--radius) + 6px); } .home-glass.profile-card .home-glass-body, .home-glass.news-card .home-glass-body, .home-content .home-glass-body { padding: 24px 20px; } .home-profile-card .home-liquid-body, .home-news-card .home-liquid-body { padding: 24px 20px; } .home-content .home-glass-body { gap: 32px; } .home-content .cv-section + .cv-section { padding-top: 0; } } @media (max-width: 820px) { .nav-mobile-panel, .search-dropdown { background: rgba(248, 250, 252, 0.94); backdrop-filter: blur(28px) saturate(165%); -webkit-backdrop-filter: blur(28px) saturate(165%); } [data-theme="dark"] .nav-mobile-panel, [data-theme="dark"] .search-dropdown { background: rgba(7, 18, 33, 0.92); } } .contact-icon::after, .news-expand-btn::after, .news-modal-close::after, .site-header .action-btn::after { content: ""; position: absolute; inset: -5px; border-radius: inherit; } .site-header .action-btn::after { inset: -1px; } :where( .nav-brand, .nav-links a, .nav-mobile-link, .site-header .action-btn, .contact-icon, .news-expand-btn, .news-modal-close, .search-close-btn, .publication-link ) { touch-action: manipulation; } @media (hover: none), (pointer: coarse) { .nav-island.home-liquid-card:hover, .home-liquid-card:hover, .home-glass:hover, .home-content:hover, .home-profile-card .avatar:hover, .contact-icon:hover, .news-expand-btn:hover, .news-modal-close:hover, .nav-links a:hover, .nav-mobile-link:hover, .site-header .action-btn:hover, .prose a.publication-link:hover, .edu-logo:hover { transform: none; } .site-header .action-btn { width: 44px; height: 44px; } .nav-links a { min-height: 44px; } } .nav-brand:active { opacity: 0.72; transform: scale(0.985); transform-origin: left center; transition-duration: 80ms; } .nav-links a:active, .nav-mobile-link:active, .site-header .action-btn:active, .home-liquid-card .contact-icon:active, .home-liquid-card .news-expand-btn:active, .news-modal-close:active, .search-close-btn:active, .prose a.publication-link:active { transform: scale(0.97); transition-duration: 80ms; } @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; } .nav-island.home-liquid-card:hover, .home-liquid-card:hover, .home-glass:hover, .home-content:hover, .avatar:hover, .contact-icon:hover, .news-expand-btn:hover, .news-modal-close:hover, .nav-links a:hover, .nav-mobile-link:hover, .site-header .action-btn:hover, .prose a.publication-link:hover, .edu-logo:hover { transform: none !important; } .search-dropdown, .nav-mobile-panel, .news-modal-overlay, .lightbox-overlay, .toast { transform: none !important; transition-property: opacity !important; transition-duration: 160ms !important; transition-timing-function: ease-out !important; } .news-modal-overlay, .nav-mobile-panel:not(.open) { transition: opacity 160ms ease-out, visibility 0s linear 160ms !important; } .news-modal-overlay.is-active, .nav-mobile-panel.open { transition: opacity 160ms ease-out, visibility 0s linear 0s !important; } .news-modal-card, .lightbox-content { transform: none !important; } } @media (prefers-reduced-transparency: reduce) { :root { --accessibility-surface: rgba(248, 250, 252, 0.97); --well-bg: rgba(248, 250, 252, 0.96); --panel-bg: rgba(248, 250, 252, 0.98); --well-border: rgba(100, 116, 139, 0.28); --panel-border: rgba(100, 116, 139, 0.34); } [data-theme="dark"] { --accessibility-surface: rgba(7, 18, 33, 0.97); --well-bg: rgba(7, 18, 33, 0.96); --panel-bg: rgba(7, 18, 33, 0.98); --well-border: rgba(203, 213, 225, 0.24); --panel-border: rgba(203, 213, 225, 0.3); } .nav-island.home-liquid-card, .home-liquid-card, .home-glass, .home-content, .search-dropdown, .nav-mobile-panel, .news-modal-card, .news-modal-header, .lightbox-content, .toast { background: var(--accessibility-surface) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; } .news-modal-overlay, .lightbox-overlay { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; } .home-lightfield { opacity: 0.28; } .home-liquid-warp, .home-liquid-warp::before, .home-liquid-warp::after { display: none !important; } } @media (prefers-contrast: more) { :root { --text: #1e293b; --muted: #334155; --well-border: rgba(15, 23, 42, 0.38); --panel-border: rgba(15, 23, 42, 0.46); } [data-theme="dark"] { --text: #f1f5f9; --muted: #e2e8f0; --well-border: rgba(248, 250, 252, 0.42); --panel-border: rgba(248, 250, 252, 0.52); } :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible { outline-width: 3px !important; } .nav-island.home-liquid-card { background: rgba(248, 250, 252, 0.94); border-color: rgba(15, 23, 42, 0.52); backdrop-filter: none; -webkit-backdrop-filter: none; } [data-theme="dark"] .nav-island.home-liquid-card { background: rgba(7, 18, 33, 0.94); border-color: rgba(248, 250, 252, 0.56); } .nav-island.home-liquid-card::before, .nav-island.home-liquid-card::after, .nav-island .home-liquid-warp { display: none; } } @media (forced-colors: active) { .nav-island.home-liquid-card, .nav-mobile-panel { color: ButtonText; background: Canvas; border: 1px solid ButtonText; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; } .nav-island.home-liquid-card::before, .nav-island.home-liquid-card::after, .nav-island .home-liquid-warp, .nav-mobile-panel::before, .nav-mobile-panel::after, .nav-mobile-panel .home-liquid-warp { display: none; } } @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) { :root { --well-bg: rgba(255, 255, 255, 0.92); --well-border: rgba(255, 255, 255, 0.95); --well-inner: rgba(255, 255, 255, 0.4); --panel-bg: rgba(255, 255, 255, 0.97); --panel-border: rgba(255, 255, 255, 0.95); --panel-inner: rgba(255, 255, 255, 0.4); } [data-theme="dark"] { --well-bg: rgba(17, 17, 30, 0.92); --well-border: rgba(255, 255, 255, 0.14); --well-inner: rgba(255, 255, 255, 0.06); --panel-bg: rgba(17, 17, 30, 0.97); --panel-border: rgba(255, 255, 255, 0.18); --panel-inner: rgba(255, 255, 255, 0.06); } .nav-island.home-liquid-card { background: rgba(248, 250, 252, 0.94); } [data-theme="dark"] .nav-island.home-liquid-card { background: rgba(7, 18, 33, 0.94); } .nav-island.home-liquid-card::before, .nav-island.home-liquid-card::after, .nav-island .home-liquid-warp { display: none; } } ::-webkit-scrollbar { width: 8px; height: 8px; } ::-webkit-scrollbar-track { background: transparent; } ::-webkit-scrollbar-thumb { background: var(--well-border); border-radius: 4px; transition: background 0.3s; } ::-webkit-scrollbar-thumb:hover { background: var(--muted); } * { scrollbar-width: thin; scrollbar-color: var(--well-border) transparent; } [data-theme="dark"] .prose a, [data-theme="dark"] .news-item a, [data-theme="dark"] .edu-role a, [data-theme="dark"] .toc a, [data-theme="dark"] .article-card-title a { background: linear-gradient(135deg, #93c5fd, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } [data-theme="dark"] .prose a:hover, [data-theme="dark"] .news-item a:hover, [data-theme="dark"] .edu-role a:hover, [data-theme="dark"] .toc a:hover, [data-theme="dark"] .article-card-title a:hover { filter: brightness(1.3); -webkit-text-fill-color: transparent; text-decoration-color: #60a5fa; } [data-theme="dark"] .news-item a { border-bottom-color: #60a5fa; } .anniversary-card { --anniv-grad: linear-gradient(135deg, #93c5fd, #2563eb); margin-top: 24px; } .anniversary-body { padding: 22px 18px 18px; display: flex; flex-direction: column; gap: 14px; } .anniversary-year-row, .anniversary-month-row { display: flex; align-items: center; justify-content: center; gap: 18px; } .anniversary-year-text { font-size: 26px; font-weight: 700; letter-spacing: 0.06em; background: var(--anniv-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; min-width: 88px; text-align: center; } .anniversary-month-text { font-size: 18px; font-weight: 600; letter-spacing: 0.04em; color: var(--heading); min-width: 70px; text-align: center; } .anniversary-nav-btn { background: transparent; border: 1px solid var(--well-border); color: var(--text); width: 28px; height: 28px; border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; line-height: 1; transition: background 0.2s, color 0.2s, transform 0.15s; padding: 0; } .anniversary-nav-btn:hover:not(:disabled) { background: var(--panel-bg); color: var(--primary); transform: scale(1.08); } .anniversary-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; } .anniversary-grid-wrap { background: rgba(255, 255, 255, 0.55); border: 1px solid rgba(255, 255, 255, 0.65); border-radius: calc(var(--radius-sm) + 4px); padding: 14px 10px 12px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 2px 6px rgba(99, 112, 158, 0.05); } [data-theme="dark"] .anniversary-grid-wrap { background: rgba(30, 32, 44, 0.55); border-color: rgba(255, 255, 255, 0.08); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 2px 6px rgba(0, 0, 0, 0.25); } .anniversary-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: 0.05em; padding: 0 0 8px 0; border-bottom: 1px solid rgba(15, 23, 42, 0.08); margin-bottom: 8px; } [data-theme="dark"] .anniversary-weekdays { border-bottom-color: rgba(255, 255, 255, 0.1); } .anniversary-weekday { line-height: 1; } .anniversary-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; } .anniversary-day { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 500; color: var(--text); line-height: 1; cursor: default; user-select: none; border-radius: 6px; position: relative; transition: background 0.15s; } .anniversary-day.empty { visibility: hidden; } .anniversary-day.is-important { background: var(--anniv-grad); color: #fff; font-weight: 700; border-radius: 50%; cursor: help; box-shadow: 0 2px 8px rgba(37, 99, 235, 0.32); transition: transform 0.15s, box-shadow 0.2s, filter 0.2s; } .anniversary-day.is-important:hover, .anniversary-day.is-important:focus { outline: none; transform: scale(1.1); filter: brightness(1.1); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.42); } .anniversary-tooltip { position: fixed; transform: translate(-50%, calc(-100% - 14px)); background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: var(--radius-xs); padding: 10px 14px; box-shadow: 0 10px 30px rgba(37, 99, 235, 0.45); z-index: 9999; min-width: max-content; max-width: 260px; font-size: 12px; line-height: 1.5; pointer-events: none; animation: anniversary-tooltip-in 0.16s ease-out; } .anniversary-tooltip[data-placement="below"] { transform: translate(-50%, 14px); } .anniversary-tooltip-title { font-weight: 700; margin-bottom: 4px; color: #ffffff; text-shadow: 0 1px 2px rgba(15, 23, 42, 0.25); } .anniversary-tooltip-desc { white-space: pre-wrap; color: rgba(255, 255, 255, 0.92); } .anniversary-tooltip::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); border: 7px solid transparent; } .anniversary-tooltip[data-placement="above"]::after { bottom: -14px; border-top-color: #1d4ed8; } .anniversary-tooltip[data-placement="below"]::after { top: -14px; border-bottom-color: #3b82f6; } @keyframes anniversary-tooltip-in { from { opacity: 0; } to { opacity: 1; } } [data-theme="dark"] .anniversary-card { --anniv-grad: linear-gradient(135deg, #93c5fd, #60a5fa); } :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; } :where(a, button, input, select, textarea, summary, [tabindex]):focus:not(:focus-visible) { outline: none; } .search-input:focus-visible { outline: none; } .search-bar-container:focus-within { outline: 2px solid var(--primary); outline-offset: 2px; } .home-liquid-card.layered-filter-card, .home-liquid-card.daily-archive-card { background: radial-gradient(125% 95% at 16% -18%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.16) 32%, rgba(255, 255, 255, 0) 56%), linear-gradient(160deg, rgba(255, 255, 255, 0.34), rgba(241, 245, 249, 0.18) 52%, rgba(219, 234, 254, 0.24)); border-color: rgba(255, 255, 255, 0.72); backdrop-filter: blur(26px) saturate(168%) contrast(1.05) brightness(1.02); -webkit-backdrop-filter: blur(26px) saturate(168%) contrast(1.05) brightness(1.02); box-shadow: 0 18px 42px rgba(73, 92, 138, 0.13), 0 4px 12px rgba(73, 92, 138, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.82), inset 0 -1px 0 rgba(100, 116, 139, 0.12), inset 0 -14px 28px rgba(96, 165, 250, 0.06); } .home-liquid-card.layered-filter-card::after, .home-liquid-card.daily-archive-card::after { opacity: 0.4; } .publication-page-card.home-glass { --home-glass-blur: 28px; --home-glass-face-top: rgba(255, 255, 255, 0.58); --home-glass-face-sheen: rgba(255, 255, 255, 0.28); --home-glass-face-mid: rgba(255, 255, 255, 0.19); --home-glass-face-bottom: rgba(219, 234, 254, 0.31); --home-glass-inner-top: rgba(255, 255, 255, 0.72); --home-glass-inner-bottom: rgba(100, 116, 139, 0.08); border: 1px solid rgba(255, 255, 255, 0.7); backdrop-filter: blur(var(--home-glass-blur)) saturate(168%) contrast(1.05) brightness(1.015); -webkit-backdrop-filter: blur(var(--home-glass-blur)) saturate(168%) contrast(1.05) brightness(1.015); box-shadow: 0 20px 48px rgba(55, 65, 95, 0.14), 0 5px 14px rgba(55, 65, 95, 0.055), inset 0 1px 0 var(--home-glass-inner-top), inset 0 -1px 0 rgba(71, 85, 105, 0.1), inset 0 -18px 30px var(--home-glass-inner-bottom); } .layered-filter-card .chip:not(.is-active), .daily-card .daily-keyword-list .chip:not(.is-active), .publication-page-card .publication-keyword:not(.is-active), .home-content .section-selected-publication .publication-keyword:not(.is-active) { color: var(--text); background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(226, 232, 240, 0.36)); border-color: rgba(255, 255, 255, 0.84); backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: 0 5px 12px rgba(71, 85, 105, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(100, 116, 139, 0.1); font-weight: 600; } .layered-filter-card .chip.is-active, .daily-card .daily-keyword-list .chip.is-active, .publication-page-card .publication-keyword.is-active, .prose a.publication-keyword.is-active { color: #fff; background: linear-gradient(135deg, #2563eb, #1d4ed8); background-clip: border-box; -webkit-background-clip: border-box; -webkit-text-fill-color: currentColor; border-color: rgba(30, 64, 175, 0.72); box-shadow: 0 8px 18px rgba(30, 64, 175, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.32), inset 0 -1px 0 rgba(15, 23, 42, 0.2); backdrop-filter: none; -webkit-backdrop-filter: none; font-weight: 650; } .daily-keywords-card .daily-type-button:is(:hover, .is-active), .publication-page-card .publication-badge { color: #fff; background: linear-gradient(135deg, #2563eb, #1d4ed8); border-color: rgba(30, 64, 175, 0.72); -webkit-text-fill-color: currentColor; } .daily-archive-card .anniversary-grid-wrap { background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(241, 245, 249, 0.46)); border-color: rgba(255, 255, 255, 0.78); box-shadow: 0 8px 18px rgba(71, 85, 105, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(100, 116, 139, 0.1); } [data-theme="dark"] .home-liquid-card.layered-filter-card, [data-theme="dark"] .home-liquid-card.daily-archive-card { background: radial-gradient(125% 95% at 16% -18%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.035) 34%, rgba(255, 255, 255, 0) 58%), linear-gradient(160deg, rgba(30, 41, 59, 0.58), rgba(15, 23, 42, 0.44) 55%, rgba(30, 64, 175, 0.18)); border-color: rgba(255, 255, 255, 0.16); backdrop-filter: blur(24px) saturate(154%) contrast(1.04) brightness(1.01); -webkit-backdrop-filter: blur(24px) saturate(154%) contrast(1.04) brightness(1.01); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32), 0 5px 14px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.34), inset 0 -14px 28px rgba(37, 99, 235, 0.08); } [data-theme="dark"] .publication-page-card.home-glass { --home-glass-face-top: rgba(30, 41, 59, 0.58); --home-glass-face-sheen: rgba(30, 41, 59, 0.42); --home-glass-face-mid: rgba(15, 23, 42, 0.4); --home-glass-face-bottom: rgba(20, 28, 44, 0.54); --home-glass-inner-top: rgba(255, 255, 255, 0.16); --home-glass-inner-bottom: rgba(37, 99, 235, 0.08); border-color: rgba(255, 255, 255, 0.16); backdrop-filter: blur(26px) saturate(150%) contrast(1.04) brightness(1.01); -webkit-backdrop-filter: blur(26px) saturate(150%) contrast(1.04) brightness(1.01); box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36), 0 6px 16px rgba(0, 0, 0, 0.18), inset 0 1px 0 var(--home-glass-inner-top), inset 0 -1px 0 rgba(0, 0, 0, 0.32), inset 0 -18px 30px var(--home-glass-inner-bottom); } [data-theme="dark"] .layered-filter-card .chip:not(.is-active), [data-theme="dark"] .daily-card .daily-keyword-list .chip:not(.is-active), [data-theme="dark"] .publication-page-card .publication-keyword:not(.is-active), [data-theme="dark"] .home-content .section-selected-publication .publication-keyword:not(.is-active) { color: var(--text); background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(148, 163, 184, 0.075)); border-color: rgba(255, 255, 255, 0.22); box-shadow: 0 5px 14px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 0 rgba(0, 0, 0, 0.2); -webkit-text-fill-color: currentColor; } [data-theme="dark"] .daily-archive-card .anniversary-grid-wrap { background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(15, 23, 42, 0.24)); border-color: rgba(255, 255, 255, 0.18); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(0, 0, 0, 0.24); } @media (hover: hover) and (pointer: fine) { .home-liquid-card.layered-filter-card:hover, .home-liquid-card.daily-archive-card:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.84); box-shadow: 0 24px 50px rgba(73, 92, 138, 0.16), 0 8px 18px rgba(73, 92, 138, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.88), inset 0 -1px 0 rgba(100, 116, 139, 0.13), inset 0 -14px 28px rgba(96, 165, 250, 0.07); } .publication-page-card.home-glass:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.82); box-shadow: 0 26px 58px rgba(55, 65, 95, 0.17), 0 8px 18px rgba(55, 65, 95, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.78), inset 0 -1px 0 rgba(71, 85, 105, 0.11); } .layered-filter-card .chip:not(.is-active):hover, .daily-card .daily-keyword-list .chip:not(.is-active):hover, .publication-page-card .publication-keyword:not(.is-active):hover { color: var(--heading); background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(219, 234, 254, 0.48)); border-color: rgba(96, 165, 250, 0.48); transform: translateY(-1px); filter: none; text-decoration: none; -webkit-text-fill-color: currentColor; } [data-theme="dark"] .layered-filter-card .chip:not(.is-active):hover, [data-theme="dark"] .daily-card .daily-keyword-list .chip:not(.is-active):hover, [data-theme="dark"] .publication-page-card .publication-keyword:not(.is-active):hover { background: linear-gradient(180deg, rgba(96, 165, 250, 0.2), rgba(37, 99, 235, 0.12)); border-color: rgba(96, 165, 250, 0.46); } [data-theme="dark"] .home-liquid-card.layered-filter-card:hover, [data-theme="dark"] .home-liquid-card.daily-archive-card:hover { border-color: rgba(255, 255, 255, 0.22); box-shadow: 0 26px 56px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.36); } [data-theme="dark"] .publication-page-card.home-glass:hover { border-color: rgba(255, 255, 255, 0.22); box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42), 0 8px 20px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(0, 0, 0, 0.34); } } @media (max-width: 800px) { .home-liquid-card.layered-filter-card, .home-liquid-card.daily-archive-card { background: radial-gradient(120% 80% at 18% -16%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 52%), linear-gradient(160deg, rgba(255, 255, 255, 0.4), rgba(241, 245, 249, 0.22) 54%, rgba(219, 234, 254, 0.28)); backdrop-filter: blur(18px) saturate(158%); -webkit-backdrop-filter: blur(18px) saturate(158%); box-shadow: 0 15px 32px rgba(73, 92, 138, 0.12), 0 4px 10px rgba(73, 92, 138, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.84), inset 0 -1px 0 rgba(100, 116, 139, 0.12); } .publication-page-card.home-glass { --home-glass-blur: 18px; --home-glass-face-top: rgba(255, 255, 255, 0.64); --home-glass-face-sheen: rgba(255, 255, 255, 0.34); --home-glass-face-mid: rgba(255, 255, 255, 0.24); --home-glass-face-bottom: rgba(219, 234, 254, 0.36); background: linear-gradient(180deg, var(--home-glass-face-top) 0%, var(--home-glass-face-sheen) 18%, var(--home-glass-face-mid) 48%, var(--home-glass-face-bottom) 100%); backdrop-filter: blur(var(--home-glass-blur)) saturate(158%); -webkit-backdrop-filter: blur(var(--home-glass-blur)) saturate(158%); box-shadow: 0 16px 36px rgba(55, 65, 95, 0.13), 0 4px 12px rgba(55, 65, 95, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.78), inset 0 -1px 0 rgba(71, 85, 105, 0.1); } [data-theme="dark"] .home-liquid-card.layered-filter-card, [data-theme="dark"] .home-liquid-card.daily-archive-card { background: radial-gradient(120% 80% at 18% -16%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 54%), linear-gradient(160deg, rgba(30, 41, 59, 0.62), rgba(15, 23, 42, 0.5) 56%, rgba(30, 64, 175, 0.2)); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.17), inset 0 -1px 0 rgba(0, 0, 0, 0.32); } [data-theme="dark"] .publication-page-card.home-glass { --home-glass-face-top: rgba(30, 41, 59, 0.64); --home-glass-face-sheen: rgba(30, 41, 59, 0.46); --home-glass-face-mid: rgba(15, 23, 42, 0.44); --home-glass-face-bottom: rgba(20, 28, 44, 0.58); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34), 0 5px 14px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.16), inset 0 -1px 0 rgba(0, 0, 0, 0.32); } } @media (prefers-reduced-motion: reduce) { .home-liquid-card.layered-filter-card:hover, .home-liquid-card.daily-archive-card:hover, .publication-page-card.home-glass:hover, .layered-filter-card .chip:hover, .daily-card .daily-keyword-list .chip:hover, .publication-page-card .publication-keyword:hover { transform: none !important; } } @media (prefers-reduced-transparency: reduce) { .home-liquid-card.layered-filter-card::before, .home-liquid-card.layered-filter-card::after, .home-liquid-card.layered-filter-card .home-liquid-warp, .home-liquid-card.daily-archive-card::before, .home-liquid-card.daily-archive-card::after, .home-liquid-card.daily-archive-card .home-liquid-warp, .publication-page-card.home-glass::before, .publication-page-card.home-glass::after { display: none !important; } .layered-filter-card .chip:not(.is-active), .daily-card .daily-keyword-list .chip:not(.is-active), .publication-page-card .publication-keyword:not(.is-active), .home-content .section-selected-publication .publication-keyword:not(.is-active) { background: #f8fafc !important; border-color: rgba(71, 85, 105, 0.42); backdrop-filter: none !important; -webkit-backdrop-filter: none !important; } [data-theme="dark"] .layered-filter-card .chip:not(.is-active), [data-theme="dark"] .daily-card .daily-keyword-list .chip:not(.is-active), [data-theme="dark"] .publication-page-card .publication-keyword:not(.is-active), [data-theme="dark"] .home-content .section-selected-publication .publication-keyword:not(.is-active) { background: #0f172a !important; border-color: rgba(226, 232, 240, 0.34); } } @media (prefers-contrast: more) { .home-liquid-card.layered-filter-card, .home-liquid-card.daily-archive-card, .publication-page-card.home-glass { background: rgba(248, 250, 252, 0.98); border-color: rgba(15, 23, 42, 0.58); backdrop-filter: none; -webkit-backdrop-filter: none; } .layered-filter-card .chip:not(.is-active), .daily-card .daily-keyword-list .chip:not(.is-active), .publication-page-card .publication-keyword:not(.is-active), .home-content .section-selected-publication .publication-keyword:not(.is-active) { background: #fff; border-color: rgba(15, 23, 42, 0.68); } [data-theme="dark"] .home-liquid-card.layered-filter-card, [data-theme="dark"] .home-liquid-card.daily-archive-card, [data-theme="dark"] .publication-page-card.home-glass { background: rgba(7, 18, 33, 0.98); border-color: rgba(248, 250, 252, 0.62); } [data-theme="dark"] .layered-filter-card .chip:not(.is-active), [data-theme="dark"] .daily-card .daily-keyword-list .chip:not(.is-active), [data-theme="dark"] .publication-page-card .publication-keyword:not(.is-active), [data-theme="dark"] .home-content .section-selected-publication .publication-keyword:not(.is-active) { background: #0f172a; border-color: rgba(248, 250, 252, 0.58); } .home-liquid-card.layered-filter-card::before, .home-liquid-card.layered-filter-card::after, .home-liquid-card.layered-filter-card .home-liquid-warp, .home-liquid-card.daily-archive-card::before, .home-liquid-card.daily-archive-card::after, .home-liquid-card.daily-archive-card .home-liquid-warp, .publication-page-card.home-glass::before, .publication-page-card.home-glass::after { display: none; } } @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) { .home-liquid-card.layered-filter-card, .home-liquid-card.daily-archive-card, .publication-page-card.home-glass { background: rgba(248, 250, 252, 0.97); backdrop-filter: none; -webkit-backdrop-filter: none; } [data-theme="dark"] .home-liquid-card.layered-filter-card, [data-theme="dark"] .home-liquid-card.daily-archive-card, [data-theme="dark"] .publication-page-card.home-glass { background: rgba(7, 18, 33, 0.97); } .home-liquid-card.layered-filter-card::before, .home-liquid-card.layered-filter-card::after, .home-liquid-card.layered-filter-card .home-liquid-warp, .home-liquid-card.daily-archive-card::before, .home-liquid-card.daily-archive-card::after, .home-liquid-card.daily-archive-card .home-liquid-warp, .publication-page-card.home-glass::before, .publication-page-card.home-glass::after { display: none; } } @media (forced-colors: active) { .home-liquid-card.layered-filter-card, .home-liquid-card.daily-archive-card, .publication-page-card.home-glass, .layered-filter-card .chip, .daily-keywords-card .daily-type-button, .daily-card .daily-keyword-list .chip, .publication-page-card .publication-keyword, .home-content .section-selected-publication .publication-keyword, .publication-page-card .publication-badge, .daily-archive-card .anniversary-grid-wrap { color: CanvasText; background: Canvas; border: 1px solid CanvasText; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; -webkit-text-fill-color: currentColor; } .layered-filter-card .chip.is-active, .daily-keywords-card .daily-type-button:is(:hover, .is-active), .daily-card .daily-keyword-list .chip.is-active, .publication-page-card .publication-keyword.is-active, .prose a.publication-keyword.is-active, .publication-page-card .publication-badge { color: HighlightText; background: Highlight; border-color: Highlight; -webkit-text-fill-color: HighlightText; } .home-liquid-card.layered-filter-card::before, .home-liquid-card.layered-filter-card::after, .home-liquid-card.layered-filter-card .home-liquid-warp, .home-liquid-card.daily-archive-card::before, .home-liquid-card.daily-archive-card::after, .home-liquid-card.daily-archive-card .home-liquid-warp, .publication-page-card.home-glass::before, .publication-page-card.home-glass::after { display: none; } }
