/* =============================================================================
 * DFX 메인페이지 — styles
 * 키컬러 확정 시 :root 토큰만 교체.
 * =========================================================================== */

:root {
  --bg: #0a0a0d;
  --panel: #131317;
  --panel-2: #1a1a20;
  --tile: #16161c;

  --text: #f2f3f5;
  --text-strong: #ffffff;
  --muted: #9a9ca4;
  --muted-2: #6c6e77;

  --key-purple: #6824d3;
  --key-purple-rgb: 104,36,211;
  --key-magenta: #df408f;
  --key-magenta-rgb: 223,64,143;
  --key-blue: #68c9ff;
  --key-blue-rgb: 104,201,255;

  --lime: var(--key-purple);
  --lime-d: var(--key-magenta);
  --purple: #a96cff;
  --purple-d: #4f17a7;
  --blue: var(--key-blue);

  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.16);

  --font-display: "SUIT Variable", "Pretendard Variable", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-body: "Pretendard Variable", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-mono: "JetBrains Mono", "IBM Plex Mono", monospace;

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1560px;
  --gap: 20px;
  --header-full-height: 120px;
  --header-main-height: 78px;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --dur: 180ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-main-height); scrollbar-color: var(--lime) #07070a; scrollbar-width: thin; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); letter-spacing: 0; }
svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #07070a; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--lime), var(--lime-d)); border: 3px solid #07070a; border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }
::-webkit-scrollbar-corner { background: #07070a; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--lime); color: #fff; padding: 8px 14px; border-radius: var(--radius-sm); }
.skip-link:focus { left: 12px; top: 12px; }
.sound-only,
.sound_only { position: absolute !important; width: 1px !important; height: 1px !important; margin: -1px !important; padding: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; border: 0 !important; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }

/* ---------- logo wordmark ---------- */
.logo-mark { font-family: var(--font-display); font-weight: 900; font-size: 26px; letter-spacing: 1px; color: var(--lime); line-height: 1; }
/* 업로드된 공식 로고(밝은 배경용) */
.brand-logo { height: 40px; width: auto; display: block; transition: filter var(--dur), opacity var(--dur); }
.brand-date { font-family: var(--font-mono); font-size: 13px; font-weight: 800; color: #4e5058; padding-left: 14px; border-left: 1px solid #d9d9de; align-self: center; line-height: 1.1; transition: color var(--dur), border-color var(--dur); }
.foot-logo { height: 28px; filter: brightness(0) invert(1); opacity: 0.82; }  /* 다크 푸터용 흰색 단색 */

.brand-text { display: inline-flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 15px; font-weight: 700; }
.brand-text small { display: inline-flex; flex-direction: column; font-size: 9.5px; letter-spacing: 0.2px; color: var(--muted); line-height: 1.35; }
.brand-text small em { font-style: normal; font-family: var(--font-mono); color: var(--muted-2); font-size: 9px; letter-spacing: 0.5px; }

/* ---------- header (2단) ---------- */
.topbar { position: fixed; left: 0; right: 0; top: 0; z-index: 50; transform: translateZ(0); }
.utilbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-height: 42px; padding: 12px clamp(16px,3vw,40px); overflow: hidden; background: linear-gradient(180deg, rgba(0,0,0,0.98), rgba(5,5,7,0.88)); border-bottom: 0; font-size: 12px; line-height: 1; transition: padding var(--dur), max-height var(--dur), opacity var(--dur); will-change: max-height, padding, opacity; }
.util-left, .util-right { display: flex; align-items: center; gap: 12px; }
.util-festival { background: none; border: none; padding: 0; color: var(--lime); font-weight: 800; font-size: 12px; letter-spacing: 1px; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.util-festival .caret { color: var(--muted); font-size: 10px; }
.util-left a { color: var(--muted); }
.util-left a:hover { color: #fff; }
.util-div { width: 1px; height: 12px; background: rgba(255,255,255,0.22); }
.util-label { color: var(--muted-2); font-size: 11px; letter-spacing: 0.5px; }
.util-sponsors { display: flex; align-items: center; gap: 16px; }
.util-sponsors img { height: 17px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

.mainbar { display: flex; align-items: center; gap: 28px; min-height: var(--header-main-height); padding: 16px clamp(16px,3vw,40px); background: linear-gradient(180deg, rgba(5,5,7,0.88) 0%, rgba(10,10,12,0.96) 34%, rgba(16,16,20,0.93) 100%); border-bottom: 1px solid rgba(255,255,255,0.1); box-shadow: 0 14px 36px rgba(0,0,0,0.28); transition: background var(--dur), border-color var(--dur), color var(--dur), box-shadow var(--dur), min-height var(--dur), padding var(--dur); }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.topnav { display: flex; align-items: center; gap: clamp(16px,1.8vw,34px); margin: 0 auto; font-size: 19px; font-weight: 700; line-height: 1; }
.topnav-item { position: relative; }
.topnav-toggle { display: inline-flex; align-items: center; gap: 6px; padding: 8px 0; transition: color var(--dur); }
.topnav-toggle::after { content: ""; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: 0.54; transition: transform var(--dur), opacity var(--dur); }
.topnav-item:hover .topnav-toggle::after,
.topnav-toggle:focus-visible::after,
.topnav-item:has(.topnav-menu:focus-within) .topnav-toggle::after { transform: rotate(225deg) translateY(-1px); opacity: 0.9; }
.topnav-menu { position: absolute; top: calc(100% + 30px); left: 50%; z-index: 20; min-width: 212px; padding: 10px; border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; background: linear-gradient(180deg, rgba(10,10,14,0.98), rgba(18,18,22,0.96)); box-shadow: 0 20px 48px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.08); opacity: 0; visibility: hidden; pointer-events: none; transform: translate(-50%,-8px); transition: opacity var(--dur), transform var(--dur), visibility var(--dur); }
.topnav-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -31px; height: 31px; }
.topnav-item:hover .topnav-menu,
.topnav-toggle:focus-visible + .topnav-menu,
.topnav-menu:focus-within { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%,0); }
.topnav-menu a { display: block; padding: 11px 12px; border-radius: 9px; color: rgba(255,255,255,0.78); font-size: 13px; font-weight: 700; line-height: 1.25; white-space: nowrap; transition: color var(--dur), background var(--dur); }
.topnav-menu a:hover, .topnav-menu a:focus-visible { color: var(--lime); background: rgba(var(--key-purple-rgb),0.09); }
.top-actions { display: flex; align-items: center; gap: 10px; }
.top-sns { display: flex; align-items: center; gap: 6px; padding-right: 4px; }
.top-sns .sns { width: 30px; height: 30px; color: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.16); }
.top-sns .sns svg { width: 17px; height: 17px; }
.top-sns .sns:hover, .top-sns .sns:focus-visible { color: var(--lime); border-color: rgba(var(--key-purple-rgb),0.48); }
.ic-btn { width: 34px; height: 34px; display: grid; place-items: center; background: none; border: none; cursor: pointer; border-radius: 8px; }
.ic-btn svg { width: 21px; height: 21px; }
.menu-toggle { display: none; }
.lang-switch { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.66); line-height: 1; }
.lang-ic { width: 16px; height: 16px; opacity: 0.58; }
.lang-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.56); font-size: 12px; font-weight: 800; letter-spacing: 0.4px; line-height: 1; transition: color var(--dur), opacity var(--dur); }
.lang-btn + .lang-btn::before { content: "/"; position: absolute; left: -7px; color: rgba(255,255,255,0.3); font-weight: 700; }
.lang-btn.is-active { background: transparent; color: rgba(255,255,255,0.9); }
.lang-btn:hover, .lang-btn:focus-visible { color: rgba(255,255,255,0.9); }

/* 절제된 다크 메인바 — 로고는 화이트, 키컬러는 UI 포인트에만 사용 */
.mainbar .brand-logo { filter: brightness(0) invert(1); opacity: 0.94; }
.mainbar .brand-date { color: rgba(255,255,255,0.62); border-left-color: rgba(255,255,255,0.2); }
.mainbar .logo-mark { color: var(--lime); }
.mainbar .brand-text strong { color: rgba(255,255,255,0.94); }
.mainbar .brand-text small { color: rgba(255,255,255,0.62); }
.mainbar .brand-text small em { color: rgba(255,255,255,0.46); }
.mainbar .topnav a { color: rgba(255,255,255,0.88); }
.mainbar .topnav a:hover, .mainbar .topnav a.active { color: var(--lime); }
.mainbar .topnav-menu a { color: rgba(255,255,255,0.76); }
.mainbar .topnav-menu a:hover, .mainbar .topnav-menu a:focus-visible { color: var(--lime); }
.mainbar .ic-btn { color: rgba(255,255,255,0.84); }
.mainbar .ic-btn:hover { color: var(--lime); }
.mainbar .lang-switch { color: rgba(255,255,255,0.78); }
.topbar.is-scrolled .utilbar { max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0; border-bottom-color: transparent; pointer-events: none; }
.topbar.is-scrolled .mainbar { background: linear-gradient(180deg, rgba(6,6,8,0.98), rgba(11,11,14,0.96)); border-bottom-color: rgba(255,255,255,0.12); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.topbar.is-scrolled .brand-logo { filter: brightness(0) invert(1); }
.topbar.is-scrolled .brand-date { color: rgba(255,255,255,0.62); border-left-color: rgba(255,255,255,0.24); }
.topbar.is-scrolled .topnav a,
.topbar.is-scrolled .lang-switch,
.topbar.is-scrolled .ic-btn,
.topbar.is-scrolled .top-sns .sns { color: rgba(255,255,255,0.92); }
.topbar.is-scrolled .top-sns .sns { border-color: rgba(255,255,255,0.18); }
.topbar.is-scrolled .topnav-menu a { color: rgba(255,255,255,0.76); }
.topbar.is-scrolled .topnav a:hover,
.topbar.is-scrolled .topnav a.active,
.topbar.is-scrolled .ic-btn:hover,
.topbar.is-scrolled .top-sns .sns:hover,
.topbar.is-scrolled .top-sns .sns:focus-visible { color: var(--lime); }
.topbar.is-scrolled .top-sns .sns:hover,
.topbar.is-scrolled .top-sns .sns:focus-visible { border-color: rgba(var(--key-purple-rgb),0.52); }
.topbar.is-scrolled .topnav-menu a:hover,
.topbar.is-scrolled .topnav-menu a:focus-visible { color: var(--lime); }

/* ---------- single-column stack ---------- */
.page { padding-top: var(--header-full-height); padding-bottom: 20px; }
.sec { padding: clamp(36px,4.6vw,68px) clamp(16px,3vw,40px); }
.sec-hero { padding: 0; }
.sec-hero .wrap { max-width: none; }
.reveal { opacity: 0.34; transform: translateY(20px); transition: opacity 0.68s var(--ease) var(--reveal-delay,0s), transform 0.54s var(--ease) var(--reveal-delay,0s); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* 히어로 바로 아래 카드는 간격을 줄이고 페이드 위로 살짝 올라온다 */
.sec-quick { margin-top: -44px; padding-top: 0; position: relative; z-index: 3; }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.notice-row { display: grid; grid-template-columns: minmax(0,1.9fr) minmax(0,1fr); gap: var(--gap); }
.panel { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.panel-kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px; color: var(--muted); margin: 0 0 14px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; }
.more { font-size: 13px; color: var(--muted); transition: color var(--dur); }
.more:hover { color: var(--lime); }
.main-section-head { display: grid; justify-items: center; gap: 8px; width: min(100%,860px); margin: 0 auto clamp(22px,3vw,40px); text-align: center; }
.section-eyebrow { margin: 0; color: var(--muted); font-family: var(--font-mono); font-size: 12px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; }
.main-section-head h2 { margin: 0; color: var(--text-strong); font-size: clamp(30px,3vw,52px); font-weight: 900; line-height: 1.12; word-break: keep-all; overflow-wrap: break-word; }
.main-section-head .more { margin-top: 4px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 0 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; transition: transform var(--dur), background var(--dur), border-color var(--dur); }
.btn:hover { transform: translateY(-1px); }
.btn-primary { flex-direction: column; gap: 1px; background: linear-gradient(135deg, var(--key-purple), var(--key-magenta)); color: #fff; box-shadow: 0 14px 36px rgba(var(--key-purple-rgb),0.24); }
.btn-primary small { font-size: 11px; font-weight: 600; opacity: 0.8; }
.btn-primary:hover { background: linear-gradient(135deg, #7b30eb, #eb58a0); }
.btn-line { border: 1px solid var(--line-2); background: transparent; color: var(--text); }
.btn-line:hover { border-color: var(--lime); background: rgba(var(--key-purple-rgb),0.10); color: var(--lime); }

/* ===================== HERO ===================== */
.hero { position: relative; overflow: hidden; min-height: calc(100dvh - var(--header-full-height)); display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% 48%; z-index: 0; filter: saturate(1.04) brightness(0.72) contrast(1.05); animation: heroZoom 26s ease-in-out infinite alternate; transform-origin: 50% 42%; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-scrim { position: absolute; inset: 0; z-index: 1; background:
  radial-gradient(circle at 72% 45%, rgba(var(--key-magenta-rgb),0.20), transparent 30%),
  linear-gradient(90deg, rgba(6,5,10,0.94) 0%, rgba(10,7,20,0.78) 44%, rgba(12,7,24,0.42) 70%, rgba(6,5,10,0.72) 100%); }
/* 도어웨이 빛 맥동 (이미지 중앙 포털 위로 screen 블렌드) */
.hero-glow { position: absolute; inset: 0; z-index: 1; pointer-events: none; mix-blend-mode: screen;
  background: radial-gradient(closest-side, rgba(var(--key-magenta-rgb),0.28), rgba(var(--key-purple-rgb),0.16) 48%, transparent 72%);
  background-repeat: no-repeat; background-position: center 46%; background-size: 40% 82%;
  animation: heroPulse 4.6s var(--ease) infinite; }
@keyframes heroPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
/* 하단 페이드 — 이미지가 배경으로 자연스럽게 이어진다 */
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 42%; z-index: 2; pointer-events: none; background: linear-gradient(to bottom, transparent 0%, rgba(10,10,13,0.65) 62%, var(--bg) 100%); }
.cursor-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; display: none; }
.hero-inner { position: relative; z-index: 3; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: clamp(32px,5vw,72px) clamp(16px,3vw,40px); display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,430px); gap: clamp(20px,3.5vw,56px); align-items: center; }
.hero-body { position: relative; z-index: 3; width: 100%; max-width: 880px; margin: 0; padding: 0; }
.hero-edition { font-family: var(--font-display); font-weight: 800; font-size: clamp(22px,2.4vw,30px); color: var(--lime); margin: 0 0 8px; }
.hero-title { font-weight: 900; font-size: clamp(38px,4.7vw,72px); line-height: 1.02; color: var(--text-strong); display: flex; flex-direction: column; }
.hero-title span + span { margin-top: 10px; font-family: var(--font-body); font-size: clamp(16px,1.55vw,24px); font-weight: 700; color: rgba(255,255,255,0.78); line-height: 1.25; }
.hero-date { font-family: var(--font-mono); font-size: clamp(22px,2.15vw,34px); font-weight: 900; color: var(--text-strong); margin: 24px 0 10px; text-shadow: 0 0 22px rgba(var(--key-purple-rgb),0.18); }
.date-count { display: inline-block; min-width: calc(var(--digits, 2) * 0.64em); color: var(--text-strong); font-variant-numeric: tabular-nums; animation: datePulse 1.05s var(--ease) both; }
.date-count:first-child { --digits: 4; }
.hero-date sup { font-size: 0.46em; color: var(--lime); font-weight: 900; margin-left: 4px; }
.hero-loc { max-width: 820px; color: rgba(255,255,255,0.74); margin: 0 0 26px; white-space: pre-line; font-size: clamp(14px,1.05vw,17px); font-weight: 650; line-height: 1.7; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.hero-update { font-size: 13px; color: var(--muted); background: rgba(20,20,26,0.6); border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px; }
.hero-update a { color: var(--text); border-bottom: 1px solid var(--line-2); }
.hero-poster-card { position: relative; z-index: 3; justify-self: start; width: min(34vw,420px); min-width: 310px; margin: 0 0 0 -44px; padding: 10px; border: 1px solid rgba(255,255,255,0.18); border-radius: 16px; background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)); box-shadow: 0 28px 90px rgba(0,0,0,0.54), 0 0 42px rgba(var(--key-purple-rgb),0.22); backdrop-filter: blur(10px); transform: perspective(900px) translate3d(var(--poster-x,0px), var(--poster-y,0px), 0) rotateY(calc(-6deg + var(--poster-ry,0deg))) rotateX(calc(2deg + var(--poster-rx,0deg))); will-change: transform; transition: border-color var(--dur), box-shadow var(--dur), filter var(--dur); }
.hero-poster-card::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, rgba(var(--key-magenta-rgb),0.42), rgba(var(--key-blue-rgb),0.18) 42%, rgba(var(--key-purple-rgb),0.35)); opacity: 0.55; pointer-events: none; filter: blur(12px); }
.hero-poster-card img { width: 100%; aspect-ratio: 1400/1978; object-fit: cover; border-radius: 10px; box-shadow: 0 18px 42px rgba(0,0,0,0.5); transform: scale(1.01); }
.hero-poster-card figcaption { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 2px 0; color: rgba(255,255,255,0.78); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.7px; }
.hero-poster-card figcaption strong { color: var(--text-strong); font-family: var(--font-body); font-size: 12px; letter-spacing: 0; }

/* ===================== QUICK MENU (scan reveal cards) ===================== */
.qm-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.qm-tile { display: block; min-height: 172px; color: var(--text); }
.qm-inner { position: relative; display: block; width: 100%; min-height: 172px; height: 100%; transition: transform var(--dur), border-color var(--dur); }
.qm-tile:hover .qm-inner, .qm-tile:focus-visible .qm-inner { transform: translateY(-2px); }
.qm-front, .qm-back { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 16px 8px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.14); background-clip: padding-box; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03); text-align: center; font-size: 12px; font-weight: 600; overflow: hidden; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.qm-front { z-index: 1; opacity: 1; background-color: var(--tile); background-image: var(--b-img); background-size: cover; background-position: center; transition: opacity 0.12s ease-out; }
.qm-tile:hover .qm-front, .qm-tile:focus-visible .qm-front { opacity: 0; }
.qm-front::before { content: ""; position: absolute; inset: -1px; z-index: 0; border-radius: inherit; background: rgba(5,5,8,0.97); }
.qm-front > * { position: relative; z-index: 1; }
.qm-back { z-index: 2; opacity: 0; pointer-events: none; background-image: var(--b-img); background-size: cover; background-position: center; transition: opacity 0.26s var(--ease); }
.qm-tile:hover .qm-back, .qm-tile:focus-visible .qm-back { opacity: 1; }
.qm-back::before { content: ""; position: absolute; top: -24%; bottom: -24%; left: -45%; z-index: 2; width: 34%; background: linear-gradient(90deg, transparent 0%, rgba(var(--key-purple-rgb),0.16) 40%, rgba(255,255,255,0.72) 50%, rgba(99,214,255,0.18) 60%, transparent 100%); opacity: 0; transform: translateX(-120%) skewX(-14deg); pointer-events: none; }
.qm-tile:hover .qm-back::before, .qm-tile:focus-visible .qm-back::before { animation: qmScan 0.72s var(--ease) 0.04s both; }
.qm-back::after { content: ""; position: absolute; inset: -1px; z-index: 1; border-radius: inherit; background: linear-gradient(180deg, rgba(5,5,8,0.08), rgba(5,5,8,0.34)); }
@keyframes qmScan { 0% { opacity: 0; transform: translateX(-120%) skewX(-14deg); } 18% { opacity: 0.86; } 100% { opacity: 0; transform: translateX(520%) skewX(-14deg); } }
.qm-label { display: block; position: relative; z-index: 1; transition: transform var(--dur), color var(--dur); }
.qm-label small { display: block; font-size: 10px; color: var(--muted); font-weight: 500; margin-top: 2px; transition: color var(--dur), font-size var(--dur); }
.qm-back .qm-label { z-index: 3; color: #fff; font-size: clamp(15px,1.2vw,18px); font-weight: 800; text-shadow: 0 2px 16px rgba(0,0,0,0.76); transform: translateY(-1px); }
.qm-back .qm-label small { color: rgba(255,255,255,0.92); font-size: 12px; font-weight: 700; }
.qm-ic { width: 26px; height: 26px; background: currentColor; color: var(--text); -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }
.qm-hl .qm-front { border-color: rgba(255,255,255,0.14); color: #fff; }
.qm-hl .qm-front::before { background: linear-gradient(160deg, rgba(8,6,12,0.97), rgba(34,18,58,0.94)); }
.qm-hl .qm-front .qm-label small { color: rgba(255,255,255,0.85); }

/* ---------- record video ---------- */
.sec-record-video { padding-top: clamp(36px,4.8vw,76px); padding-bottom: clamp(34px,4.4vw,70px); }
.record-video { display: grid; gap: clamp(20px,2.8vw,38px); justify-items: center; text-align: center; }
.record-video-copy { display: grid; gap: 12px; width: min(100%,760px); align-content: center; justify-items: center; }
.record-video-copy h2 { color: var(--text-strong); font-size: clamp(30px,3vw,52px); line-height: 1.12; word-break: keep-all; overflow-wrap: break-word; }
.record-video-copy p:not(.section-eyebrow):not(.panel-kicker) { margin: 0; color: rgba(255,255,255,0.66); font-size: 15px; line-height: 1.78; word-break: keep-all; overflow-wrap: break-word; }
.record-video-player { position: relative; overflow: hidden; width: min(100%,1080px); border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.14); background: #050508; box-shadow: 0 24px 80px rgba(0,0,0,0.46); aspect-ratio: 16/9; }
.record-video-thumb { position: absolute; inset: 0; display: block; width: 100%; height: 100%; padding: 0; border: 0; background: #050508; color: #fff; cursor: pointer; overflow: hidden; }
.record-video-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.98) contrast(1.02) brightness(0.74); transform: scale(1.01); transition: transform 0.42s var(--ease), filter 0.3s var(--ease); }
.record-video-thumb:hover img,
.record-video-thumb:focus-visible img { transform: scale(1.045); filter: saturate(1.08) contrast(1.04) brightness(0.9); }
.record-video-shade { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(var(--key-purple-rgb),0.10), rgba(5,5,8,0.34) 58%, rgba(5,5,8,0.70)); pointer-events: none; }
.record-video-play { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: clamp(66px,6.5vw,96px); aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(255,255,255,0.34); background: linear-gradient(135deg, rgba(var(--key-purple-rgb),0.86), rgba(var(--key-magenta-rgb),0.78)); box-shadow: 0 18px 58px rgba(var(--key-purple-rgb),0.36); transform: translate(-50%,-50%); transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease); }
.record-video-play::before { content: ""; width: 0; height: 0; margin-left: 5px; border-top: 13px solid transparent; border-bottom: 13px solid transparent; border-left: 20px solid #fff; }
.record-video-thumb:hover .record-video-play,
.record-video-thumb:focus-visible .record-video-play { transform: translate(-50%,-50%) scale(1.06); box-shadow: 0 22px 68px rgba(var(--key-magenta-rgb),0.42); }
.record-video-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* ---------- right quick menu ---------- */
.side-quick { position: fixed; right: clamp(12px,1.5vw,24px); top: 50%; z-index: 48; width: 92px; padding: 7px; transform: translateY(-50%); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; background: rgba(6,6,9,0.76); box-shadow: 0 18px 46px rgba(0,0,0,0.42); backdrop-filter: blur(14px); }
.sq-ticket { display: flex; min-height: 76px; flex-direction: column; align-items: center; justify-content: center; gap: 3px; border-radius: 10px; background: linear-gradient(135deg, var(--key-purple), var(--key-magenta)); color: #fff; text-align: center; font-weight: 900; box-shadow: 0 12px 32px rgba(var(--key-purple-rgb),0.24); transition: transform var(--dur), background var(--dur), box-shadow var(--dur); }
.sq-ticket:hover, .sq-ticket:focus-visible { transform: translateY(-1px); background: linear-gradient(135deg, #7b30eb, #eb58a0); box-shadow: 0 16px 38px rgba(var(--key-magenta-rgb),0.26); }
.sq-ticket strong { font-size: 15px; line-height: 1; }
.sq-ticket small { max-width: 64px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 10px; font-weight: 800; line-height: 1.1; opacity: 0.82; }
.sq-list { display: grid; gap: 4px; margin-top: 6px; }
.sq-link { display: flex; min-height: 50px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; border: 1px solid transparent; border-radius: 10px; color: rgba(255,255,255,0.74); text-align: center; font-size: 10.5px; font-weight: 700; line-height: 1.1; transition: color var(--dur), background var(--dur), border-color var(--dur), transform var(--dur); }
.sq-link:hover, .sq-link:focus-visible { color: #fff; border-color: rgba(var(--key-purple-rgb),0.36); background: rgba(var(--key-purple-rgb),0.09); transform: translateY(-1px); }
.sq-link.is-hot { color: rgba(255,255,255,0.9); background: rgba(var(--key-purple-rgb),0.16); border-color: rgba(var(--key-purple-rgb),0.24); }
.sq-link.is-hot:hover, .sq-link.is-hot:focus-visible { border-color: rgba(var(--key-purple-rgb),0.42); background: rgba(var(--key-purple-rgb),0.24); }
.sq-ic { width: 19px; height: 19px; flex: 0 0 auto; background: currentColor; -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }
.sq-ticket .sq-ic { width: 21px; height: 21px; }
.sq-top { display: flex; min-height: 42px; align-items: center; justify-content: center; gap: 5px; margin-top: 6px; border-top: 1px solid rgba(255,255,255,0.12); border-radius: 0 0 10px 10px; color: rgba(255,255,255,0.62); font-family: var(--font-mono); font-size: 10px; font-weight: 800; letter-spacing: 0.5px; transition: color var(--dur), background var(--dur), transform var(--dur); }
.sq-top span { font-size: 14px; line-height: 1; transform: translateY(-1px); }
.sq-top:hover, .sq-top:focus-visible { color: var(--lime); background: rgba(var(--key-purple-rgb),0.08); transform: translateY(-1px); }

/* mask icons */
[data-icon="ticket"]     { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M4 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2 2 2 0 0 0 0 4 2 2 0 0 1-2 2H6a2 2 0 0 1-2-2 2 2 0 0 0 0-4z'/%3E%3Cpath d='M13 6v12' stroke-dasharray='2 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M4 8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2 2 2 0 0 0 0 4 2 2 0 0 1-2 2H6a2 2 0 0 1-2-2 2 2 0 0 0 0-4z'/%3E%3Cpath d='M13 6v12' stroke-dasharray='2 2'/%3E%3C/svg%3E"); }
[data-icon="map"]        { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M12 21s7-6.4 7-11a7 7 0 1 0-14 0c0 4.6 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M12 21s7-6.4 7-11a7 7 0 1 0-14 0c0 4.6 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E"); }
[data-icon="notice"]     { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M6 9a6 6 0 1 1 12 0c0 5 2 6 2 6H4s2-1 2-6z'/%3E%3Cpath d='M10 20a2 2 0 0 0 4 0'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M6 9a6 6 0 1 1 12 0c0 5 2 6 2 6H4s2-1 2-6z'/%3E%3Cpath d='M10 20a2 2 0 0 0 4 0'/%3E%3C/svg%3E"); }
[data-icon="doc"]        { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M7 3h7l4 4v14H7z'/%3E%3Cpath d='M14 3v4h4M9 12h6M9 16h6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Cpath d='M7 3h7l4 4v14H7z'/%3E%3Cpath d='M14 3v4h4M9 12h6M9 16h6'/%3E%3C/svg%3E"); }
[data-icon="supporters"] { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Ccircle cx='9' cy='8' r='3.4'/%3E%3Cpath d='M3 20c0-3.3 2.7-5 6-5s6 1.7 6 5'/%3E%3Cpath d='M18 8v6M15 11h6'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Ccircle cx='9' cy='8' r='3.4'/%3E%3Cpath d='M3 20c0-3.3 2.7-5 6-5s6 1.7 6 5'/%3E%3Cpath d='M18 8v6M15 11h6'/%3E%3C/svg%3E"); }
[data-icon="wallet"]     { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Crect x='3' y='6' width='18' height='13' rx='3'/%3E%3Cpath d='M3 10h18M16 14h2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.6'%3E%3Crect x='3' y='6' width='18' height='13' rx='3'/%3E%3Cpath d='M3 10h18M16 14h2'/%3E%3C/svg%3E"); }

/* notice panel */
.notice-list { list-style: none; margin: 0; padding: 0; }
.notice-list li + li { border-top: 1px solid var(--line); }
.notice-list a { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 2px; transition: color var(--dur); }
.notice-list a:hover { color: var(--lime); }
.notice-list span { font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.notice-list time { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); white-space: nowrap; }

/* ticket panel */
.ticket { position: relative; overflow: hidden; border-color: rgba(var(--key-magenta-rgb),0.58); background: linear-gradient(135deg, rgba(var(--key-magenta-rgb),0.88) 0%, rgba(var(--key-purple-rgb),0.76) 100%); color: #fff; box-shadow: 0 18px 46px rgba(var(--key-magenta-rgb),0.10); transition: transform var(--dur), background 260ms var(--ease), box-shadow var(--dur), filter var(--dur); }
.ticket:hover { transform: translateY(-1px); background: linear-gradient(135deg, #fff 0%, #f7f8f1 100%); filter: brightness(1.01); box-shadow: 0 24px 60px rgba(var(--key-magenta-rgb),0.18); }
.ticket::before { content: ""; position: absolute; inset: -35% -20% auto 22%; z-index: 0; height: 120%; background: radial-gradient(circle, rgba(255,255,255,0.26), rgba(255,255,255,0) 58%); opacity: 0.34; pointer-events: none; }
.ticket::after { content: ""; position: absolute; top: -28%; bottom: -28%; left: -38%; z-index: 2; width: 24%; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 34%, rgba(255,255,255,0.76) 50%, rgba(var(--key-purple-rgb),0.18) 66%, transparent 100%); opacity: 0; transform: translateX(-150%) skewX(-16deg); pointer-events: none; }
.ticket:hover::after { animation: ticketSheen 0.78s var(--ease) both; }
@keyframes ticketSheen { 0% { opacity: 0; transform: translateX(-150%) skewX(-16deg); } 22% { opacity: 0.84; } 100% { opacity: 0; transform: translateX(560%) skewX(-16deg); } }
@keyframes datePulse {
  0% { color: rgba(var(--key-purple-rgb),0.72); text-shadow: 0 0 18px rgba(var(--key-purple-rgb),0.28); }
  100% { color: var(--text-strong); text-shadow: 0 0 0 rgba(var(--key-purple-rgb),0); }
}
.ticket-ic { position: absolute; right: 14px; bottom: 8px; z-index: 1; width: 108px; height: 108px; background: rgba(255,255,255,0.18); -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; opacity: 0.58; transition: transform 260ms var(--ease), opacity var(--dur); }
.ticket:hover .ticket-ic { transform: scale(1.07); opacity: 0.68; }
.ticket-label, .ticket-title, .ticket-note { position: relative; z-index: 3; }
.ticket-label { font-size: 12px; color: rgba(255,255,255,0.72); font-weight: 800; margin: 0 0 10px; }
.ticket-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px,2.2vw,34px); color: #fff; margin: 0 0 8px; }
.ticket-note { font-size: 13px; color: rgba(255,255,255,0.76); font-weight: 700; margin: 0; }
.ticket:hover .ticket-label,
.ticket:hover .ticket-title,
.ticket:hover .ticket-note { color: #08080a; }

/* ===================== PROGRAM ===================== */
.block-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.block-head h2 { font-size: clamp(20px,2.2vw,26px); font-weight: 800; letter-spacing: 0.5px; }
.program-stage { position: relative; min-height: clamp(410px,38vw,570px); padding: 8px 0 58px; overflow: hidden; }
.program-viewport { position: relative; height: clamp(350px,33vw,500px); overflow: hidden; border-radius: var(--radius); }
.program-panel { position: absolute; top: 50%; left: 50%; width: min(64vw,880px); aspect-ratio: 16/9; min-width: 520px; isolation: isolate; overflow: hidden; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.16); background: #07070a; box-shadow: 0 24px 70px rgba(0,0,0,0.56); transition: transform 0.48s var(--ease), opacity 0.34s var(--ease), filter 0.34s var(--ease), border-color var(--dur); }
.program-panel::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(5,5,8,0.84) 0%, rgba(5,5,8,0.52) 34%, rgba(5,5,8,0.18) 68%, rgba(5,5,8,0.38) 100%), linear-gradient(180deg, rgba(5,5,8,0.08) 0%, rgba(5,5,8,0.56) 100%); pointer-events: none; }
.program-bg, .program-visual { position: absolute; background-image: var(--c-img); background-size: cover; background-position: center; }
.program-bg { inset: -14%; z-index: 0; filter: blur(22px) saturate(0.92); opacity: 0.46; transform: scale(1.08); }
.program-visual { inset: 0; z-index: 1; border-radius: inherit; box-shadow: none; transition: transform 0.48s var(--ease), filter 0.34s var(--ease); }
.program-panel.is-active { z-index: 4; opacity: 1; filter: none; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }
.program-panel.is-prev { z-index: 2; opacity: 0.46; filter: grayscale(0.7) brightness(0.58); pointer-events: none; transform: translate(-126%,-50%) scale(0.72); }
.program-panel.is-next { z-index: 2; opacity: 0.46; filter: grayscale(0.7) brightness(0.58); pointer-events: none; transform: translate(26%,-50%) scale(0.72); }
.program-panel.is-away { z-index: 1; opacity: 0; pointer-events: none; transform: translate(-50%,-50%) scale(0.62); }
.program-panel.is-active:hover { border-color: rgba(var(--key-purple-rgb),0.48); }
.program-panel.is-active:hover .program-visual { transform: scale(1.035); filter: saturate(1.06) contrast(1.03); }
.prog-body { position: absolute; left: 8%; bottom: 10%; z-index: 3; width: min(420px,54%); padding: 0; }
.prog-name { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,3.2vw,48px); line-height: 1; color: var(--text-strong); margin: 0 0 12px; text-shadow: 0 4px 24px rgba(0,0,0,0.62); }
.prog-name b { font-weight: 800; font-size: 14px; letter-spacing: 1px; display: block; margin-bottom: 6px; }
.prog-desc { font-size: 14px; color: rgba(245,245,248,0.78); margin: 0 0 16px; line-height: 1.65; }
.prog-link { font-size: 13px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--line-2); padding-bottom: 2px; }
.accent-lime .prog-name b, .accent-lime .prog-link:hover { color: var(--lime); }
.accent-purple .prog-name b, .accent-purple .prog-link:hover { color: #b69bff; }
.accent-blue .prog-name b, .accent-blue .prog-link:hover { color: var(--blue); }
.prog-link:hover { border-color: currentColor; }
.program-panel:not(.is-active) .prog-body { opacity: 0; }
.stage-arrow { position: absolute; top: calc(50% - 22px); z-index: 6; width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.22); background: rgba(8,8,12,0.68); color: var(--text); font-size: 28px; line-height: 1; cursor: pointer; backdrop-filter: blur(8px); transition: background var(--dur), border-color var(--dur), transform var(--dur); }
.stage-prev { left: max(12px,3vw); }
.stage-next { right: max(12px,3vw); }
.stage-arrow:hover { background: rgba(var(--key-purple-rgb),0.18); border-color: rgba(var(--key-purple-rgb),0.46); transform: translateY(-1px); }
.program-tabs { position: absolute; left: 50%; bottom: 8px; z-index: 6; display: flex; gap: 8px; transform: translateX(-50%); padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(8,8,12,0.72); backdrop-filter: blur(8px); }
.program-tab { min-width: 88px; height: 34px; padding: 0 14px; border: none; border-radius: 999px; background: transparent; color: var(--muted); font-size: 12px; font-weight: 800; cursor: pointer; }
.program-tab[aria-selected="true"] { background: linear-gradient(135deg, var(--key-purple), var(--key-magenta)); color: #fff; }

/* ===================== JURY ===================== */
.jury { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.jury-tabs { display: flex; gap: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.jt { background: none; border: none; color: var(--muted); font-size: 14px; font-weight: 700; padding: 0 0 12px; cursor: pointer; position: relative; }
.jt.active { color: var(--text-strong); }
.jt.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--lime); }
.jury-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.jury-card { margin: 0; }
.jury-card img { display: block; width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--radius-sm); filter: grayscale(1) contrast(1.05); background: var(--tile); transition: filter 0.32s var(--ease); }
.jury-card:hover img, .jury-card:focus-within img { filter: grayscale(0) contrast(1); }
.jury-card figcaption { padding-top: 10px; }
.jury-card strong { display: block; font-size: 15px; }
.jury-card span { display: block; font-size: 12px; color: var(--lime); margin-top: 2px; }
.jury-card small { display: block; font-size: 12px; color: var(--muted); }

/* ===================== SCREENING (상영예정작) ===================== */
.screening { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.screening .block-head h2 { font-size: clamp(20px,2.2vw,26px); }
.screening-note { margin: 6px 0 0; font-size: 12px; color: var(--muted); }
.poster-strip { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
.poster { flex: 0 0 auto; width: calc((100% - 14px*6) / 7); min-width: 116px; }
.poster-img { width: 100%; aspect-ratio: 2/3; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--tile); box-shadow: 0 12px 30px rgba(0,0,0,0.5); transition: transform var(--dur), border-color var(--dur); }
.poster:hover .poster-img { transform: translateY(-4px); border-color: var(--lime); }
.poster-cap { display: block; padding: 9px 2px 0; }
.poster-cap strong { display: block; font-size: 12.5px; font-weight: 700; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.poster-cap small { display: block; font-size: 11px; color: var(--muted); }

/* ===================== ARCHIVE ===================== */
.archive { position: relative; }
.archive-note { margin: 6px 0 0; font-size: 12px; color: var(--muted); }
.archive-strip { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 14px; }
.archive-card { position: relative; display: block; min-width: 0; color: var(--text); }
.archive-media { position: relative; display: block; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--tile); aspect-ratio: 5/8; box-shadow: 0 16px 36px rgba(0,0,0,0.42); transition: transform var(--dur), border-color var(--dur), filter var(--dur); }
.archive-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,8,0.04) 0%, rgba(5,5,8,0.16) 55%, rgba(5,5,8,0.66) 100%); pointer-events: none; }
.archive-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(0.86); transition: transform 0.42s var(--ease), filter var(--dur); }
.archive-card:hover .archive-media, .archive-card:focus-visible .archive-media { transform: translateY(-4px); border-color: rgba(var(--key-purple-rgb),0.62); }
.archive-card:hover .archive-media img, .archive-card:focus-visible .archive-media img { transform: scale(1.045); filter: saturate(1.04) brightness(1); }
.archive-info { display: block; padding: 10px 2px 0; }
.archive-info b { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12.5px; color: var(--text-strong); }
.archive-info span, .archive-info em { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; color: var(--muted); font-style: normal; }
.archive-card.is-featured .archive-media { border-color: rgba(var(--key-purple-rgb),0.32); }

/* ===================== ABOUT ===================== */
.about { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: 32px; align-items: center; }
.about-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; margin: 0 0 14px; }
.about-desc { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0 0 18px; max-width: 56ch; }
.about-cta { min-height: 44px; padding: 0 20px; }
.about-right { display: flex; gap: 40px; flex-wrap: wrap; }
.sns-row { display: flex; gap: 10px; }
.sns { width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text); transition: color var(--dur), border-color var(--dur); }
.sns svg { width: 20px; height: 20px; }
.sns:hover { color: var(--lime); border-color: var(--lime); }
.about-news { min-width: 240px; flex: 1; }
.news-form { display: flex; gap: 8px; }
.news-form input { flex: 1; min-width: 0; height: 44px; padding: 0 14px; border-radius: var(--radius-sm); background: var(--tile); border: 1px solid var(--line); color: var(--text); font-size: 13px; }
.news-form input::placeholder { color: var(--muted-2); }
.news-form button { width: 44px; height: 44px; border-radius: var(--radius-sm); background: linear-gradient(135deg, var(--key-purple), var(--key-magenta)); border: none; color: #fff; font-size: 18px; font-weight: 700; cursor: pointer; }

/* ===================== FOOTER ===================== */
.sitefoot { border-top: 1px solid var(--line); background: #08080a; }
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 30px clamp(16px,3vw,40px); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand .logo-mark { font-size: 22px; }
.foot-mid { margin-left: auto; text-align: right; }
.foot-links { display: flex; gap: 16px; justify-content: flex-end; font-size: 12.5px; color: var(--muted); margin-bottom: 6px; }
.foot-links a:hover { color: var(--lime); }
.foot-info { display: flex; gap: 16px; justify-content: flex-end; flex-wrap: wrap; font-size: 12px; color: var(--muted-2); margin: 0; }
.copyright { width: 100%; font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); margin: 0; padding-top: 8px; border-top: 1px solid var(--line); }

/* ===================== SUPPORTERS FORM ===================== */
.supporters-page { padding-bottom: 0; background:
  radial-gradient(circle at 78% 18%, rgba(var(--key-purple-rgb),0.09), transparent 28%),
  linear-gradient(180deg, #08080b 0%, var(--bg) 46%, #08080a 100%); }
.supporters-hero { position: relative; overflow: hidden; padding: clamp(70px,8vw,128px) clamp(16px,3vw,40px) clamp(38px,5vw,76px); border-bottom: 1px solid var(--line); }
.supporters-hero-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,8,12,0.96), rgba(8,8,12,0.74)), url("../assets/guide/guide-title-supporters.jpg?v=20260704-guide-title-hero") center/cover; opacity: 0.88; }
.subpage-title-hero { min-height: 360px; display: flex; align-items: flex-end; }
.supporters-hero-inner { position: relative; z-index: 1; width: min(100%, var(--maxw)); margin-inline: auto; }
.supporters-kicker,
.supporters-hero .panel-kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 1.5px; color: var(--muted); margin: 0 0 14px; font-weight: 900; text-transform: uppercase; }
.supporters-hero h1 { max-width: 900px; margin: 0; font-size: clamp(40px,5vw,76px); line-height: 1.02; color: var(--text-strong); }
.supporters-hero-inner > p:not(.supporters-kicker):not(.panel-kicker) { max-width: 760px; margin: 18px 0 0; color: rgba(255,255,255,0.72); font-size: clamp(15px,1.2vw,18px); font-weight: 650; line-height: 1.72; word-break: keep-all; }
.supporters-hero-inner > p:empty,
.supporters-meta:empty { display: none; }
.supporters-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.supporters-meta span { display: inline-flex; align-items: center; gap: 7px; min-height: 36px; padding: 0 13px; border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; background: rgba(8,8,12,0.58); color: rgba(255,255,255,0.72); font-size: 13px; }
.supporters-meta b { color: var(--text-strong); font-weight: 850; }
.supporters-sec { padding-top: clamp(34px,4.2vw,64px); }
.supporters-layout { display: grid; grid-template-columns: minmax(260px,360px) minmax(0,1fr); gap: clamp(18px,2.5vw,34px); align-items: start; }
.supporters-guide { position: sticky; top: 126px; display: grid; gap: 14px; }
.supporters-guide-block { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(18,18,24,0.78); padding: 20px; }
.supporters-steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.supporters-steps li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 700; }
.supporters-steps span { font-family: var(--font-mono); color: var(--lime); font-size: 12px; font-weight: 900; }
.supporters-steps li.is-current { color: var(--text-strong); }
.supporters-steps li.is-current span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 999px; background: linear-gradient(135deg, var(--key-purple), var(--key-magenta)); color: #fff; }
.supporters-note { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.supporters-stack { display: grid; gap: 18px; }
.supporters-form { display: grid; gap: 18px; }
.recruit-card { display: grid; gap: 14px; padding: clamp(20px,2.4vw,32px); border: 1px solid rgba(var(--key-purple-rgb),0.22); border-radius: var(--radius); background: linear-gradient(135deg, rgba(19,22,16,0.92), rgba(16,16,22,0.92)); box-shadow: 0 20px 70px rgba(0,0,0,0.30); }
.recruit-card h2 { margin: 0; color: var(--text-strong); font-family: var(--font-display); font-size: clamp(24px,2.4vw,38px); line-height: 1.12; }
.recruit-card h3 { margin: 0 0 2px; color: var(--text-strong); font-family: var(--font-display); font-size: clamp(20px,1.65vw,28px); line-height: 1.18; }
.recruit-lead { max-width: 780px; margin: 0; color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.7; }
.recruit-cover { overflow: hidden; }
.invite-visual { position: relative; overflow: hidden; min-height: clamp(220px,28vw,420px); margin: 2px 0 0; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: #050506; }
.invite-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05); opacity: 0.86; }
.invite-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,6,9,0.05), rgba(6,6,9,0.42)); pointer-events: none; }
.recruit-table { display: grid; overflow: hidden; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: rgba(4,4,7,0.42); }
.recruit-row { display: grid; grid-template-columns: minmax(118px,0.26fr) minmax(0,1fr); min-height: 48px; border-top: 1px solid rgba(255,255,255,0.08); }
.recruit-row:first-child { border-top: 0; }
.recruit-row strong { display: flex; align-items: center; padding: 12px 14px; background: rgba(255,255,255,0.055); color: var(--lime); font-size: 13px; font-weight: 900; }
.recruit-row span { display: flex; align-items: center; padding: 12px 14px; color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.45; }
.recruit-list { display: grid; gap: 9px; margin: 0; padding-left: 20px; color: rgba(255,255,255,0.78); font-size: 14px; line-height: 1.65; }
.supporters-form fieldset { margin: 0; padding: clamp(20px,2.2vw,30px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(17,17,22,0.9); }
.supporters-form legend { float: left; width: 100%; box-sizing: border-box; margin: 0 0 18px; padding: 0 0 14px; border-bottom: 1px solid rgba(255,255,255,0.10); color: var(--text-strong); font-family: var(--font-display); font-size: clamp(20px,1.7vw,26px); font-weight: 900; line-height: 1.2; }
.supporters-form legend + .form-grid,
.supporters-form legend + .agreement-field-row,
.supporters-form legend + .privacy-summary,
.supporters-form legend + .check-row { clear: both; margin-top: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 18px; }
.supporters-form label { display: grid; gap: 8px; color: rgba(255,255,255,0.78); font-size: 13px; font-weight: 800; }
.date-field { display: grid; gap: 8px; color: rgba(255,255,255,0.78); font-size: 13px; font-weight: 800; }
.date-field > label { display: block; color: inherit; font-size: inherit; font-weight: inherit; }
.field-label { display: block; margin-bottom: 8px; color: rgba(255,255,255,0.78); font-size: 13px; font-weight: 850; }
.apply-notice { padding: 20px clamp(20px,2.2vw,30px); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); background: rgba(255,255,255,0.055); }
.apply-notice ul { display: grid; gap: 8px; margin: 0; padding-left: 18px; color: rgba(255,255,255,0.72); font-size: 13px; line-height: 1.7; }
.choice-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.choice-card { min-height: 88px; padding: 15px; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: rgba(6,6,10,0.62); }
.choice-card strong { display: block; margin-bottom: 6px; color: var(--text-strong); font-size: 14px; }
.choice-card small { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.55; }
.supporters-form input,
.supporters-form select,
.supporters-form textarea { width: 100%; border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-sm); background: rgba(6,6,10,0.78); color: var(--text); font: inherit; font-size: 14px; }
.supporters-form input,
.supporters-form select { height: 48px; padding: 0 14px; }
.supporters-form textarea { min-height: 126px; padding: 14px; resize: vertical; }
.supporters-form input:focus,
.supporters-form select:focus,
.supporters-form textarea:focus { border-color: rgba(var(--key-purple-rgb),0.45); outline: none; box-shadow: 0 0 0 3px rgba(var(--key-purple-rgb),0.08); }
.date-control { position: relative; display: block; }
.date-control input { padding-right: 54px; color-scheme: dark; }
.date-control input::-webkit-calendar-picker-indicator { opacity: 0; width: 48px; height: 48px; cursor: pointer; }
.date-picker-button { position: absolute; right: 7px; top: 50%; display: grid; place-items: center; width: 34px; height: 34px; padding: 0; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.78); cursor: pointer; transform: translateY(-50%); transition: border-color var(--dur), background var(--dur), color var(--dur); }
.date-picker-button svg { width: 18px; height: 18px; }
.date-picker-button:hover,
.date-picker-button:focus-visible { border-color: rgba(var(--key-purple-rgb),0.45); background: rgba(var(--key-purple-rgb),0.10); color: var(--lime); outline: none; }
.form-wide { grid-column: 1 / -1; }
.privacy-summary { margin-top: 18px; padding: 16px; border-radius: var(--radius-sm); background: rgba(6,6,10,0.7); color: var(--muted); font-size: 13px; line-height: 1.7; }
.privacy-summary p { margin: 0 0 10px; color: rgba(255,255,255,0.76); }
.privacy-summary ul { margin: 0; padding-left: 18px; }
.check-row { display: flex !important; grid-template-columns: none; align-items: flex-start; gap: 10px !important; margin-top: 14px; color: rgba(255,255,255,0.78); line-height: 1.55; }
.check-row input { flex: 0 0 auto; width: 18px !important; height: 18px; margin-top: 2px; accent-color: var(--lime); }
.check-row span { flex: 1 1 auto; min-width: 0; word-break: keep-all; overflow-wrap: break-word; }
.agreement-form { gap: 28px; }
.agreement-intro { border-color: rgba(255,255,255,0.14); background: linear-gradient(135deg, rgba(22,22,28,0.95), rgba(12,12,16,0.92)); }
.agreement-field-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin: 4px 0 4px; }
.agreement-field-row label { display: grid; grid-template-columns: minmax(76px,0.26fr) minmax(0,1fr); align-items: center; gap: 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); background: rgba(6,6,10,0.62); }
.agreement-field-row span { display: grid; place-items: center; align-self: stretch; min-height: 48px; border-right: 1px solid rgba(255,255,255,0.10); color: var(--text-strong); font-weight: 900; }
.agreement-field-row input { height: 48px; border: 0; border-radius: 0; background: transparent; }
.agreement-sign { display: grid; justify-items: end; gap: 8px; padding: 10px 0 0; color: rgba(255,255,255,0.78); font-size: 15px; }
.agreement-sign output { display: inline-block; min-width: 84px; color: var(--text-strong); font-weight: 900; }
.agreement-sign output.is-empty { color: rgba(255,255,255,0.45); font-weight: 700; }
.agreement-sign strong { color: var(--text-strong); font-size: 18px; font-weight: 950; }
.agreement-block { display: grid; gap: 14px; }
.agreement-block h2 { margin: 0; color: var(--text-strong); font-family: var(--font-display); font-size: clamp(22px,1.8vw,30px); line-height: 1.18; }
.agreement-box { padding: clamp(18px,2vw,26px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); background: rgba(17,17,22,0.9); color: rgba(255,255,255,0.76); font-size: 14px; line-height: 1.75; }
.agreement-box ul { display: grid; gap: 8px; margin: 0; padding-left: 20px; }
.agreement-box p { margin: 0; }
.agreement-box strong { color: var(--text-strong); font-weight: 900; }
.agreement-muted .agreement-box { border-color: rgba(255,255,255,0.08); background: rgba(13,13,17,0.72); color: var(--muted); }
.agree-options { display: flex; justify-content: flex-end; gap: 18px; flex-wrap: wrap; padding: 0 2px; }
.agree-options label { display: inline-flex; grid-template-columns: none; align-items: center; gap: 8px; color: rgba(255,255,255,0.78); font-size: 14px; font-weight: 850; }
.agree-options input { flex: 0 0 auto; width: 18px; height: 18px; margin: 0; accent-color: var(--lime); }
.consent-line { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 20px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); background: rgba(8,8,12,0.74); }
.consent-line p { margin: 0; color: var(--text-strong); font-size: 15px; font-weight: 850; line-height: 1.5; }
.form-actions { display: flex; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.invite-actions { margin-top: 2px; }
.form-status { min-height: 22px; margin: -6px 0 0; color: var(--muted); font-size: 13px; text-align: right; }
.complete-card { display: grid; gap: 18px; padding: clamp(22px,2.6vw,36px); border: 1px solid rgba(var(--key-purple-rgb),0.24); border-radius: var(--radius); background: linear-gradient(135deg, rgba(18,22,15,0.94), rgba(15,15,21,0.94)); box-shadow: 0 24px 80px rgba(0,0,0,0.34); }
.complete-card h2 { margin: 0; color: var(--text-strong); font-family: var(--font-display); font-size: clamp(28px,3vw,46px); line-height: 1.1; }
.receipt-number { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); background: rgba(5,5,8,0.72); }
.receipt-number span { color: var(--muted); font-size: 13px; font-weight: 850; }
.receipt-number strong { color: var(--lime); font-family: var(--font-mono); font-size: clamp(20px,2vw,30px); letter-spacing: 0; }
.summary-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.summary-grid div { min-height: 78px; padding: 16px; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: rgba(6,6,10,0.58); }
.summary-grid span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 12px; font-weight: 850; }
.summary-grid strong { display: block; color: var(--text-strong); font-size: 15px; line-height: 1.45; word-break: keep-all; overflow-wrap: break-word; }
.list-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.list-toolbar h2 { margin: 0; color: var(--text-strong); font-family: var(--font-display); font-size: clamp(26px,2.5vw,40px); }
.list-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.status-pill { display: inline-flex; align-items: center; justify-content: center; min-height: 30px; padding: 0 11px; border: 1px solid rgba(var(--key-purple-rgb),0.26); border-radius: 999px; background: rgba(var(--key-purple-rgb),0.10); color: var(--lime); font-size: 12px; font-weight: 900; white-space: nowrap; }
.record-table-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: rgba(5,5,8,0.58); }
.record-table { width: 100%; min-width: 840px; border-collapse: collapse; color: rgba(255,255,255,0.76); font-size: 13px; }
.record-table th, .record-table td { padding: 15px 14px; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: left; vertical-align: middle; }
.record-table th { color: rgba(255,255,255,0.54); font-size: 12px; font-weight: 900; }
.record-table tr:last-child td { border-bottom: 0; }
.record-table button,
.record-table a { border: 0; background: transparent; color: var(--text-strong); font: inherit; font-family: var(--font-mono); font-weight: 900; cursor: pointer; }
.record-table button.is-active,
.record-table a.is-active { color: var(--lime); text-decoration: underline; text-underline-offset: 4px; }
.record-detail { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.detail-card { display: grid; align-content: start; gap: 14px; padding: clamp(20px,2.2vw,30px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(17,17,22,0.9); }
.detail-card h3 { margin: 0; color: var(--text-strong); font-family: var(--font-display); font-size: clamp(22px,1.8vw,30px); line-height: 1.16; }
.detail-list { display: grid; gap: 0; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); }
.detail-list div { display: grid; grid-template-columns: minmax(130px,0.32fr) minmax(0,1fr); border-top: 1px solid rgba(255,255,255,0.08); }
.detail-list div:first-child { border-top: 0; }
.detail-list dt, .detail-list dd { margin: 0; padding: 12px 14px; font-size: 13px; line-height: 1.55; }
.detail-list dt { display: flex; align-items: center; background: rgba(255,255,255,0.055); color: rgba(255,255,255,0.58); font-weight: 900; }
.detail-list dd { color: rgba(255,255,255,0.82); word-break: keep-all; overflow-wrap: break-word; }
.readonly-form { gap: 14px; }
.readonly-form fieldset { padding: clamp(16px,1.7vw,22px); background: rgba(10,10,15,0.76); }
.readonly-form input[readonly],
.readonly-form select:disabled { border-color: rgba(255,255,255,0.10); background: rgba(255,255,255,0.045); color: rgba(255,255,255,0.86); opacity: 1; cursor: default; }
.readonly-form input[type="checkbox"]:disabled { opacity: 1; cursor: default; }
.readonly-consent { gap: 12px; }
.readonly-consent-card,
.readonly-consent-block { padding: clamp(16px,1.7vw,22px); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); background: rgba(10,10,15,0.76); }
.readonly-consent-card h4,
.readonly-consent-block h4 { margin: 0 0 14px; padding: 0 0 13px; border-bottom: 1px solid rgba(255,255,255,0.10); color: var(--text-strong); font-family: var(--font-display); font-size: clamp(18px,1.45vw,24px); font-weight: 900; line-height: 1.22; }
.readonly-form .agreement-intro p { margin: 12px 0 0; color: rgba(255,255,255,0.74); font-size: 13px; line-height: 1.75; }
.readonly-form .agreement-sign { padding-top: 14px; }
.readonly-form .agreement-box { border-color: rgba(255,255,255,0.08); background: rgba(5,5,8,0.48); font-size: 13px; line-height: 1.7; }
.readonly-form .agreement-box ul { gap: 6px; }
.readonly-consent-line { align-items: flex-start; margin-top: 12px; padding: 14px 16px; }
.readonly-consent-line .check-row { flex: 0 0 auto; margin-top: 0; white-space: nowrap; }

/* ===================== BOARD PAGES ===================== */
.board-page { padding-bottom: 0; background:
  radial-gradient(circle at 72% 10%, rgba(var(--key-magenta-rgb),0.12), transparent 26%),
  radial-gradient(circle at 18% 24%, rgba(var(--key-purple-rgb),0.12), transparent 32%),
  linear-gradient(180deg, #08080b 0%, var(--bg) 42%, #08080a 100%); }
.community-page .supporters-hero-bg,
.notice-page .supporters-hero-bg,
.press-page .supporters-hero-bg,
.materials-page .supporters-hero-bg,
.faq-page .supporters-hero-bg { background: linear-gradient(90deg, rgba(8,8,12,0.96), rgba(8,8,12,0.74)), url("../assets/info/info04.jpg") center/cover; opacity: 0.82; }
.supporters-board-page .supporters-hero-bg { background: linear-gradient(90deg, rgba(8,8,12,0.95), rgba(8,8,12,0.70)), url("../assets/guide/guide-title-supporters.jpg?v=20260704-guide-title-hero") center/cover; opacity: 0.86; }
.board-hero { min-height: 360px; display: flex; align-items: flex-end; }
.board-sec { padding-top: clamp(34px,4.2vw,66px); }
.board-layout { display: grid; grid-template-columns: minmax(220px,280px) minmax(0,1fr); gap: clamp(18px,2.4vw,34px); align-items: start; }
.board-side { position: sticky; top: 126px; display: grid; gap: 8px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(17,17,22,0.86); }
.board-side a { display: flex; align-items: center; justify-content: space-between; min-height: 44px; padding: 0 14px; border-radius: var(--radius-sm); color: rgba(255,255,255,0.68); font-size: 13px; font-weight: 900; transition: color var(--dur), background var(--dur); }
.board-side a::after { content: "→"; color: rgba(255,255,255,0.25); font-family: var(--font-mono); }
.board-side a:hover,
.board-side a:focus-visible,
.board-side a.is-active { color: var(--text-strong); background: rgba(var(--key-purple-rgb),0.16); }
.board-side a.is-active::after { color: var(--lime); }
.board-main { display: grid; gap: 18px; min-width: 0; }
@media (min-width: 1101px) {
  .subpage-page .board-layout { padding-right: 112px; }
}
.board-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; padding: clamp(20px,2.2vw,30px); border: 1px solid rgba(var(--key-purple-rgb),0.22); border-radius: var(--radius); background: linear-gradient(135deg, rgba(18,18,24,0.92), rgba(10,10,14,0.92)); }
.board-head h2 { color: var(--text-strong); font-size: clamp(28px,3.1vw,48px); line-height: 1.06; }
.board-desc { margin: 10px 0 0; color: rgba(255,255,255,0.56); font-size: 13px; font-weight: 700; line-height: 1.55; }
.board-tools { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.board-search { display: block; min-width: min(280px,38vw); }
.board-search input { width: 100%; height: 46px; border: 1px solid rgba(255,255,255,0.13); border-radius: var(--radius-sm); background: rgba(6,6,10,0.72); color: var(--text); padding: 0 14px; font: inherit; font-size: 13px; }
.board-search input:focus { border-color: rgba(var(--key-purple-rgb),0.46); outline: none; box-shadow: 0 0 0 3px rgba(var(--key-purple-rgb),0.08); }
.board-write { min-width: 92px; justify-content: center; color: rgba(255,255,255,0.82); }
.board-apply { min-width: 166px; justify-content: center; }
.board-tabs { display: flex; align-items: center; gap: 8px; overflow-x: auto; padding: 8px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(12,12,18,0.72); }
.board-tabs a { display: inline-flex; align-items: center; justify-content: center; min-width: max-content; min-height: 38px; padding: 0 16px; border-radius: 999px; color: rgba(255,255,255,0.64); font-size: 13px; font-weight: 900; }
.board-tabs a:hover,
.board-tabs a:focus-visible,
.board-tabs a.is-active { color: #fff; background: linear-gradient(135deg, rgba(var(--key-purple-rgb),0.64), rgba(var(--key-magenta-rgb),0.54)); }
.board-list { overflow: hidden; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); background: rgba(7,7,10,0.62); }
.board-table-head { display: grid; grid-template-columns: 86px minmax(0,1fr) minmax(210px,0.38fr); gap: 16px; padding: 13px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.035); color: rgba(255,255,255,0.44); font-size: 12px; font-weight: 950; }
.board-row { display: grid; grid-template-columns: 86px minmax(0,1fr) minmax(210px,0.38fr); align-items: center; gap: 16px; min-height: 68px; padding: 16px 18px; border-top: 1px solid rgba(255,255,255,0.08); transition: background var(--dur), color var(--dur), transform var(--dur); }
.board-row:first-child,
.board-table-head + .board-row { border-top: 0; }
.board-row:hover,
.board-row:focus-visible { background: rgba(var(--key-purple-rgb),0.10); color: var(--text-strong); transform: translateX(2px); }
.board-row.is-important { background: rgba(var(--key-magenta-rgb),0.055); }
.board-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 54px; min-height: 30px; padding: 0 10px; border: 1px solid rgba(var(--key-purple-rgb),0.34); border-radius: 999px; background: rgba(var(--key-purple-rgb),0.12); color: var(--lime); font-size: 12px; font-weight: 950; white-space: nowrap; }
.board-row strong { min-width: 0; color: rgba(255,255,255,0.90); font-size: clamp(15px,1.16vw,18px); line-height: 1.42; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.board-row:hover strong { color: var(--text-strong); }
.board-meta { color: rgba(255,255,255,0.48); font-size: 12.5px; font-weight: 700; text-align: right; white-space: nowrap; }
.board-empty { display: grid; place-items: center; gap: 10px; min-height: 230px; padding: clamp(28px,4vw,54px); text-align: center; border-top: 1px solid rgba(255,255,255,0.08); }
.board-empty strong { color: var(--text-strong); font-size: clamp(22px,2.1vw,34px); line-height: 1.18; }
.board-empty p { margin: 0; color: rgba(255,255,255,0.58); font-size: 14px; font-weight: 700; line-height: 1.6; }
.board-view .board-head { align-items: flex-start; }
.board-files { display: flex; flex-wrap: wrap; gap: 8px; }
.board-file { display: inline-flex; align-items: center; min-height: 38px; padding: 0 12px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; color: rgba(255,255,255,0.78); font-size: 13px; font-weight: 850; }
.board-file span { margin-left: 6px; color: rgba(255,255,255,0.48); font-size: 12px; font-weight: 750; }
.board-file:hover { border-color: rgba(var(--key-purple-rgb),0.42); color: #fff; }
.board-file:hover span { color: rgba(255,255,255,0.72); }
.board-content { min-height: 280px; }
.board-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.board-content-body { color: rgba(255,255,255,0.78); font-size: 16px; line-height: 1.85; word-break: keep-all; overflow-wrap: break-word; }
.board-content-body p { margin: 0 0 1em; }
.board-view .board-content {
  padding: clamp(14px,2vw,22px);
  background: rgba(7,7,10,0.92);
}
.board-view .board-content-body {
  min-height: 240px;
  padding: clamp(24px,3vw,42px);
  border: 1px solid #e1e1d7;
  border-radius: var(--radius-sm);
  background: #f6f5ef;
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  color: #171719;
  font-size: 16px;
  line-height: 1.88;
}
.board-view .board-content-body :where(p, div, span, font, li, td, th, strong, em, b, i, u) {
  color: inherit;
}
.board-view .board-content-body :where(h1, h2, h3, h4, h5, h6) {
  color: #111114;
  line-height: 1.35;
}
.board-view .board-content-body p {
  margin: 0 0 1em;
}
.board-view .board-content-body :where(ul, ol) {
  display: block;
  margin: 0 0 1.2em;
  padding-left: 1.4em;
  list-style: revert;
}
.board-view .board-content-body li {
  position: static;
  padding-left: 0;
  font-size: inherit;
  line-height: 1.8;
  list-style: inherit;
}
.board-view .board-content-body li::before {
  content: none;
}
.board-view .board-content-body :where(img) {
  margin-inline: auto;
  background: transparent;
}
.board-view .board-content-body :where(div, section, article, p, span, font, table, tbody, thead, tfoot, tr, td, th)[style*="background" i],
.board-view .board-content-body :where(div, section, article, p, span, font, table, tbody, thead, tfoot, tr, td, th)[bgcolor] {
  background: transparent !important;
  background-color: transparent !important;
}
.board-view .board-content-body :where(div, p, span, font, li, td, th, strong, em, b, i, u)[style*="color:#fff" i],
.board-view .board-content-body :where(div, p, span, font, li, td, th, strong, em, b, i, u)[style*="color: #fff" i],
.board-view .board-content-body :where(div, p, span, font, li, td, th, strong, em, b, i, u)[style*="color:white" i],
.board-view .board-content-body :where(div, p, span, font, li, td, th, strong, em, b, i, u)[style*="color: white" i],
.board-view .board-content-body :where(div, p, span, font, li, td, th, strong, em, b, i, u)[style*="color:rgb(255" i],
.board-view .board-content-body :where(div, p, span, font, li, td, th, strong, em, b, i, u)[style*="color: rgb(255" i] {
  color: #171719 !important;
}
.board-view .board-content-body table {
  width: 100% !important;
  max-width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.55) !important;
  color: #171719;
}
.board-view .board-content-body th,
.board-view .board-content-body td {
  border-color: #d7d7cc !important;
  background-color: rgba(255,255,255,0.38) !important;
}
.board-view .board-content-body a {
  color: #4d1bb7;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.archive-page .supporters-hero-bg { background: linear-gradient(90deg, rgba(8,8,12,0.96), rgba(8,8,12,0.72)), url("../assets/archive-1.jpg") center/cover; opacity: 0.86; }
.archive-page .supporters-hero-inner > p:not(.supporters-kicker):not(.panel-kicker) {
  max-width: min(760px,100%);
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}
.archive-page .board-layout {
  grid-template-columns: minmax(190px,240px) minmax(0,1fr);
  max-width: 1440px;
}
.archive-page .board-side { display: grid; }
.archive-page .board-view {
  padding: 0;
  border: 0;
  background: transparent;
}
.archive-page .board-head {
  padding: 0 0 clamp(18px,2.4vw,30px);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 0;
  background: transparent;
}
.archive-page .board-head h2 {
  color: rgba(255,255,255,0.92);
  font-size: clamp(34px,4vw,64px);
  letter-spacing: 0;
}
.archive-page .board-desc { display: none; }
.archive-page .board-content {
  min-width: 0;
  padding: clamp(12px,1.8vw,22px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
  overflow: hidden;
}
.archive-page .board-content-body {
  display: block;
  min-width: 0;
  padding: clamp(22px,4vw,56px);
  border: 1px solid #e4e4dc;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(0,0,0,0.30);
  color: #171719;
  font-size: 16px;
  line-height: 1.8;
}
.archive-page .board-content-body > div {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  width: 100%;
  min-width: 0;
  gap: clamp(26px,4vw,54px);
}
.archive-page .board-content-body :where(img, iframe, video) {
  max-width: 100%;
}
.archive-page .board-content-body .video-wrap {
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  margin: 0 0 clamp(8px,1vw,16px);
  border-radius: 8px;
  background: #050506;
  aspect-ratio: 16 / 9;
}
.archive-page .board-content-body .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.archive-page .board-content-body .row {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: clamp(18px,2.2vw,34px);
  align-items: start;
  margin: 0;
}
.archive-page .board-content-body .row > .row {
  grid-column: 1 / -1;
}
.archive-page .board-content-body .col-xs-12 { grid-column: span 12; min-width: 0; }
.archive-page .board-content-body .col-sm-12 { grid-column: span 12; min-width: 0; }
.archive-page .board-content-body .col-sm-6 { grid-column: span 6; min-width: 0; }
.archive-page .board-content-body .col-sm-4 { grid-column: span 4; min-width: 0; }
.archive-page .board-content-body .col-md-12 { grid-column: span 12; min-width: 0; }
.archive-page .board-content-body .col-md-7 { grid-column: span 7; min-width: 0; }
.archive-page .board-content-body .col-md-5 { grid-column: span 5; min-width: 0; }
.archive-page .board-content-body .col-md-3 { grid-column: span 3; min-width: 0; }
.archive-page .board-content-body .col-md-5 img {
  width: 100%;
  border: 1px solid #e4e4dc;
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
.archive-page .board-content-body h1,
.archive-page .board-content-body h2,
.archive-page .board-content-body h3 {
  margin: 0;
  color: #111114;
  letter-spacing: 0;
  word-break: keep-all;
}
.archive-page .board-content-body .tw-font-bold { font-weight: 900; }
.archive-page .board-content-body .tw-font-semibold { font-weight: 800; }
.archive-page .board-content-body .tw-text-5xl { font-size: clamp(36px,4vw,58px); line-height: 1.08; }
.archive-page .board-content-body .tw-text-4xl { font-size: clamp(27px,2.7vw,42px); line-height: 1.16; }
.archive-page .board-content-body .tw-text-3xl { font-size: clamp(19px,1.8vw,27px); line-height: 1.28; }
.archive-page .board-content-body .tw-mt-5 { margin-top: 12px; }
.archive-page .board-content-body .tw-mt-10 { margin-top: clamp(22px,2.4vw,34px); }
.archive-page .board-content-body .tw-mb-10 { margin-bottom: clamp(20px,2.2vw,32px); }
.archive-page .board-content-body .tw-mb-12 { margin-bottom: clamp(24px,3vw,42px); }
.archive-page .board-content-body .tw-pt-20 { padding-top: clamp(34px,5vw,72px); }
.archive-page .board-content-body .tw-py-10 { padding-top: clamp(26px,3.4vw,50px); padding-bottom: clamp(26px,3.4vw,50px); }
.archive-page .board-content-body .tw-my-20 { margin-top: clamp(38px,5vw,78px); margin-bottom: clamp(38px,5vw,78px); }
.archive-page .board-content-body p {
  margin: 0;
  color: #37373a;
  font-size: 16px;
  line-height: 1.8;
}
.archive-page .board-content-body .text-end { text-align: right; color: #6b6b70; font-size: 13px; }
.archive-page .board-content-body .tw-text-center { text-align: center; }
.archive-page .board-content-body .tw-content-center { vertical-align: middle; }
.archive-page .board-content-body .view-area-divider {
  position: relative;
  height: 1px;
  margin: clamp(10px,2vw,22px) 0;
  background: linear-gradient(90deg, transparent, #d9d9d1 12%, #d9d9d1 88%, transparent);
}
.archive-page .board-content-body .divider-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #222;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%,-50%);
}
.archive-page .board-content-body .table {
  width: 100% !important;
  min-width: 760px;
  margin-top: 18px;
  border-collapse: collapse;
  background: #fff !important;
  color: #171719;
  font-size: 14px;
  line-height: 1.55;
}
.archive-page .board-content-body .table :where(th, td) {
  padding: 13px 14px;
  border: 1px solid #d7d7d0 !important;
  background: #fff !important;
  color: #222226;
}
.archive-page .board-content-body .table :where(th, thead td) {
  background: #efefea !important;
  color: #111114;
  font-weight: 900;
}
.archive-page .board-content-body .table-striped tbody tr:nth-child(odd) td {
  background: #f8f8f4 !important;
}
.archive-page .board-content-body .col-md-12 {
  overflow-x: auto;
}
.archive-page .board-content-body .col-md-12:has(> .table),
.archive-page .board-content-body .col-md-12:has(> .text-end) {
  overflow-x: auto;
}
.archive-page .board-content-body .view_image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f1eb;
  text-decoration: none;
}
.archive-page .board-content-body .view_image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.28s var(--ease), filter 0.2s var(--ease);
}
.archive-page .board-content-body :where(.col-md-3, .col-sm-4) .view_image img,
.archive-page .board-content-body :where(.col-md-3, .col-sm-4) img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.archive-page .board-content-body :where(.col-md-3, .col-sm-4) .view_image img[src*="screening-img"] {
  aspect-ratio: 4 / 3;
}
.archive-page .board-content-body .view_image:hover img,
.archive-page .board-content-body .view_image:focus-visible img {
  transform: scale(1.035);
  filter: brightness(1.04);
}
.archive-page .board-content-body a.view_image {
  color: inherit;
  text-decoration: none;
}
.board-block { display: grid; gap: 12px; scroll-margin-top: 120px; }
.board-subhead { display: flex; align-items: end; justify-content: space-between; gap: 14px; padding: 8px 2px 0; }
.board-subhead h3 { color: var(--text-strong); font-size: clamp(22px,2vw,34px); }
.board-index-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.board-index-card { position: relative; display: grid; min-height: 190px; align-content: end; gap: 10px; padding: clamp(20px,2.1vw,30px); border: 1px solid rgba(255,255,255,0.11); border-radius: var(--radius); background: linear-gradient(135deg, rgba(18,18,24,0.86), rgba(8,8,12,0.88)); overflow: hidden; transition: transform var(--dur), border-color var(--dur), background var(--dur); }
.board-index-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 18%, rgba(var(--key-purple-rgb),0.22), transparent 34%); opacity: 0.8; pointer-events: none; }
.board-index-card span { position: absolute; top: 18px; left: 20px; color: rgba(255,255,255,0.28); font-family: var(--font-mono); font-size: 13px; font-weight: 900; }
.board-index-card strong,
.board-index-card em,
.board-index-card b { position: relative; z-index: 1; }
.board-index-card strong { color: var(--text-strong); font-size: clamp(22px,2vw,34px); line-height: 1.1; }
.board-index-card em { color: rgba(255,255,255,0.62); font-size: 13px; font-style: normal; line-height: 1.55; word-break: keep-all; }
.board-index-card b { justify-self: start; min-height: 30px; padding: 6px 10px; border: 1px solid rgba(var(--key-purple-rgb),0.28); border-radius: 999px; color: var(--lime); background: rgba(var(--key-purple-rgb),0.11); font-size: 12px; font-weight: 950; }
.board-index-card:hover,
.board-index-card:focus-visible { transform: translateY(-3px); border-color: rgba(var(--key-purple-rgb),0.38); background: linear-gradient(135deg, rgba(24,24,31,0.92), rgba(10,10,15,0.92)); }
.subpage-visual { background-size: cover; background-position: center; }
.subpage-visual .supporters-hero-bg,
.subpage-page .supporters-hero-bg { background-size: cover; background-position: center; opacity: 0.86; }
.subpage-head { align-items: center; }
.subpage-card-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.subpage-card { min-height: 136px; display: grid; align-content: space-between; gap: 14px; padding: clamp(18px,1.8vw,24px); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); background: linear-gradient(135deg, rgba(18,18,24,0.84), rgba(8,8,12,0.80)); }
.subpage-card span { color: var(--lime); font-family: var(--font-mono); font-size: 12px; font-weight: 950; }
.subpage-card strong { color: rgba(255,255,255,0.88); font-size: clamp(15px,1.14vw,18px); line-height: 1.45; word-break: keep-all; overflow-wrap: break-word; }
.subpage-panel { display: grid; gap: 14px; padding: clamp(22px,2.4vw,34px); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); background: rgba(13,13,19,0.84); }
.subpage-panel h3 { margin: 0; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.10); color: var(--text-strong); font-family: var(--font-display); font-size: clamp(24px,2.2vw,36px); line-height: 1.16; }
.subpage-panel p { margin: 0; color: rgba(255,255,255,0.76); font-size: 15px; line-height: 1.84; word-break: keep-all; overflow-wrap: break-word; }
.subpage-panel ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.subpage-panel li { position: relative; padding-left: 18px; color: rgba(255,255,255,0.76); font-size: 15px; line-height: 1.7; word-break: keep-all; overflow-wrap: break-word; }
.subpage-panel li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 12px rgba(var(--key-purple-rgb),0.46); }
.subpage-archive { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.subpage-archive a { display: grid; gap: 6px; padding: 16px; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: rgba(5,5,8,0.42); }
.subpage-archive a:hover { border-color: rgba(var(--key-purple-rgb),0.34); background: rgba(var(--key-purple-rgb),0.10); }
.subpage-archive span { color: var(--lime); font-family: var(--font-mono); font-size: 12px; font-weight: 950; }
.subpage-archive strong { color: rgba(255,255,255,0.90); font-size: 14px; line-height: 1.35; }
.subpage-archive em { color: rgba(255,255,255,0.48); font-size: 12px; font-style: normal; }
.dfx-legacy-content { display: grid; gap: clamp(30px,4vw,64px); }
.legacy-title-box { display: grid; gap: 7px; padding: 0 0 clamp(12px,1.6vw,22px); border-bottom: 1px solid rgba(255,255,255,0.14); }
.legacy-title-box h2 { color: var(--text-strong); font-size: clamp(32px,3.4vw,58px); line-height: 1.05; }
.legacy-title-box p { margin: 0; color: rgba(255,255,255,0.52); font-family: var(--font-mono); font-size: 13px; font-weight: 800; letter-spacing: 0; }
.legacy-about { display: grid; grid-template-columns: minmax(300px,0.9fr) minmax(0,1.1fr); gap: clamp(28px,4vw,64px); align-items: start; }
.legacy-media img,
.legacy-about-logo,
.legacy-logo-panel img,
.legacy-poster-layout img,
.legacy-image-stack img,
.legacy-doc-images img,
.legacy-org-chart img,
.legacy-org-list img,
.legacy-history-images img,
.legacy-jury-card img { width: 100%; height: auto; display: block; }
.legacy-media img { border-radius: var(--radius); box-shadow: 0 28px 70px rgba(0,0,0,0.34); }
.legacy-copy { display: grid; gap: 24px; }
.legacy-big-title { display: grid; gap: 8px; color: var(--text-strong); font-family: var(--font-display); font-size: clamp(28px,3.2vw,56px); font-weight: 950; line-height: 1.12; word-break: keep-all; }
.legacy-big-title strong { display: inline; justify-self: start; color: #fff; font: inherit; background: none; }
.legacy-text { display: grid; gap: 18px; color: rgba(255,255,255,0.76); font-size: 16px; line-height: 1.86; word-break: keep-all; }
.legacy-text p { margin: 0; }
.legacy-about-logo { max-width: 340px; opacity: 0.2; filter: brightness(0) invert(1); }
.legacy-section { display: grid; gap: clamp(22px,3vw,42px); padding-top: clamp(8px,1vw,16px); border-top: 1px solid rgba(255,255,255,0.10); }
.legacy-split { grid-template-columns: minmax(150px,220px) minmax(0,1fr); align-items: start; }
.legacy-section > h3 { margin: 0; color: var(--text-strong); font-size: clamp(22px,2vw,34px); line-height: 1.15; }
.legacy-concept-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.legacy-concept-grid dl { min-height: 0; display: grid; align-content: start; gap: 14px; margin: 0; padding: 0; border: 0; border-radius: 0; background: transparent; }
.legacy-concept-grid dt { color: rgba(255,255,255,0.92); font-size: clamp(22px,2vw,32px); font-weight: 950; }
.legacy-concept-grid dd { display: grid; gap: 6px; margin: 0; }
.legacy-concept-grid strong { color: var(--lime); font-size: clamp(18px,1.5vw,24px); line-height: 1.28; }
.legacy-concept-grid span { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.55; }
.legacy-logo-panel { padding: clamp(12px,2vw,28px) 0; border: 0; border-radius: 0; background: transparent; }
.legacy-logo-panel img { max-width: 780px; margin: 0 auto; filter: brightness(0) invert(1); opacity: 0.96; }
.legacy-poster-layout { display: grid; grid-template-columns: minmax(220px,360px) minmax(0,1fr); gap: clamp(28px,4vw,58px); align-items: start; }
.legacy-poster-layout figure { margin: 0; }
.legacy-poster-layout figure img { border-radius: var(--radius-sm); box-shadow: 0 22px 70px rgba(0,0,0,0.38); }
.legacy-text-block { display: grid; gap: 13px; padding-top: clamp(22px,2.4vw,36px); border-top: 1px solid rgba(255,255,255,0.10); }
.legacy-text-block:first-child { padding-top: 0; border-top: 0; }
.legacy-text-block strong { color: var(--text-strong); font-size: clamp(19px,1.7vw,26px); line-height: 1.25; }
.legacy-text-block em { color: var(--lime); font-size: 15px; font-style: normal; font-weight: 900; }
.legacy-image-stack { display: grid; gap: clamp(16px,2vw,28px); justify-items: center; }
.legacy-image-stack img { max-width: 1000px; border-radius: var(--radius-sm); background: #fff; box-shadow: 0 24px 80px rgba(0,0,0,0.34); }
.legacy-tabs { display: flex; gap: 28px; margin-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.legacy-tabs span { padding: 0 0 13px; color: rgba(255,255,255,0.42); font-weight: 950; }
.legacy-tabs .is-active { color: var(--text-strong); border-bottom: 2px solid var(--lime); }
.legacy-jury-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: clamp(14px,1.8vw,24px); }
.legacy-jury-card { margin: 0; }
.legacy-jury-card img { aspect-ratio: 5/6; object-fit: cover; border-radius: var(--radius-sm); filter: grayscale(1) contrast(1.05); transition: filter 0.28s var(--ease), transform 0.28s var(--ease); }
.legacy-jury-card:hover img { filter: grayscale(0) contrast(1); transform: translateY(-3px); }
.legacy-jury-card figcaption { padding-top: 12px; }
.legacy-jury-card strong { display: block; color: var(--text-strong); font-size: 16px; }
.legacy-jury-card span { display: block; margin-top: 2px; color: var(--lime); font-size: 13px; font-weight: 900; }
.legacy-jury-card small { display: block; color: rgba(255,255,255,0.54); font-size: 13px; }
.legacy-org-chart { padding: clamp(24px,3vw,44px); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); background: rgba(255,255,255,0.035); }
.legacy-org-chart img { max-width: 900px; margin: 0 auto; }
.legacy-org-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.legacy-org-list li { display: grid; grid-template-columns: 94px minmax(0,1fr); gap: 16px; align-items: center; min-height: 126px; padding: 14px; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: rgba(255,255,255,0.035); }
.legacy-org-list img { aspect-ratio: 1; object-fit: cover; border-radius: 50%; background: rgba(255,255,255,0.08); }
.legacy-org-list strong { display: block; color: var(--text-strong); font-size: 18px; }
.legacy-org-list span { display: block; margin-top: 4px; color: rgba(255,255,255,0.58); font-size: 13px; line-height: 1.45; word-break: keep-all; }
.legacy-history { display: grid; gap: clamp(30px,4vw,62px); }
.legacy-history-group { display: grid; gap: 20px; padding-top: clamp(8px,1vw,16px); border-top: 1px solid rgba(255,255,255,0.10); }
.legacy-history-copy h3 { margin: 0 0 12px; color: var(--text-strong); font-size: clamp(24px,2.4vw,38px); line-height: 1.18; }
.legacy-history-copy p { margin: 0; color: rgba(255,255,255,0.74); font-size: 16px; line-height: 1.8; word-break: keep-all; }
.legacy-history-images { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.legacy-history-images li { min-width: 0; }
.legacy-history-images a { display: block; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.10); background: rgba(255,255,255,0.035); }
.legacy-history-images img { aspect-ratio: 5/8; object-fit: cover; transition: transform 0.32s var(--ease), filter 0.22s var(--ease); }
.legacy-history-images a:hover img { transform: scale(1.035); filter: brightness(1.05); }
.legacy-doc-layout { display: grid; grid-template-columns: minmax(150px,220px) minmax(0,1fr); gap: clamp(24px,3.2vw,52px); align-items: start; padding-top: clamp(8px,1vw,16px); border-top: 1px solid rgba(255,255,255,0.10); }
.legacy-doc-label { position: sticky; top: 118px; color: rgba(255,255,255,0.48); font-family: var(--font-mono); font-size: 12px; font-weight: 950; line-height: 1.45; text-transform: uppercase; letter-spacing: 0; }
.legacy-doc-body { display: grid; gap: clamp(18px,2.4vw,34px); min-width: 0; }
.legacy-doc-intro { display: grid; gap: 12px; max-width: 920px; }
.legacy-doc-intro h3 { margin: 0; color: var(--text-strong); font-size: clamp(26px,2.7vw,44px); line-height: 1.16; word-break: keep-all; overflow-wrap: break-word; }
.legacy-doc-intro p { margin: 0; color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.82; word-break: keep-all; overflow-wrap: break-word; }
.legacy-action-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.legacy-action-card { display: grid; align-content: space-between; gap: 16px; min-height: 122px; padding: clamp(18px,2vw,26px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(18,18,24,0.82), rgba(6,6,10,0.74)); color: inherit; transition: border-color 0.24s var(--ease), background 0.24s var(--ease), transform 0.24s var(--ease); }
.legacy-action-card:hover { transform: translateY(-2px); border-color: rgba(var(--key-purple-rgb),0.42); background: linear-gradient(135deg, rgba(var(--key-purple-rgb),0.18), rgba(8,8,12,0.84)); }
.legacy-action-card.is-disabled { opacity: 0.62; cursor: not-allowed; }
.legacy-action-card.is-disabled:hover { transform: none; border-color: rgba(255,255,255,0.12); background: linear-gradient(135deg, rgba(18,18,24,0.82), rgba(6,6,10,0.74)); }
.legacy-action-card span { color: var(--text-strong); font-size: clamp(17px,1.5vw,22px); font-weight: 950; line-height: 1.25; word-break: keep-all; }
.legacy-action-card p { margin: 0; color: rgba(255,255,255,0.56); font-size: 13px; line-height: 1.55; word-break: keep-all; }
.legacy-doc-images { display: grid; gap: clamp(16px,2vw,26px); justify-items: center; }
.legacy-doc-images figure { width: 100%; max-width: 1000px; margin: 0; }
.legacy-doc-images img { border-radius: var(--radius-sm); background: #fff; box-shadow: 0 24px 80px rgba(0,0,0,0.34); }
.legacy-doc-images figcaption { padding-top: 10px; color: rgba(255,255,255,0.46); font-size: 12px; text-align: right; }
.legacy-reference-links { display: grid; gap: 12px; padding: clamp(16px,1.8vw,22px); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: rgba(255,255,255,0.035); }
.legacy-reference-links strong { color: rgba(255,255,255,0.82); font-size: 14px; }
.legacy-reference-links div { display: flex; flex-wrap: wrap; gap: 8px; }
.legacy-reference-links a { display: inline-flex; align-items: center; min-height: 38px; padding: 0 14px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; color: rgba(255,255,255,0.76); font-size: 13px; font-weight: 900; }
.legacy-reference-links a:hover { color: #fff; border-color: rgba(var(--key-purple-rgb),0.42); background: rgba(var(--key-purple-rgb),0.14); }
.program-detail-layout { display: block; padding: clamp(24px,3vw,48px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); background: #f5f4ef; color: #151515; box-shadow: 0 24px 80px rgba(0,0,0,0.28); }
.program-detail-body { display: grid; gap: clamp(28px,3.4vw,52px); min-width: 0; }
.program-detail-hero { display: grid; gap: clamp(14px,2vw,24px); padding-bottom: clamp(18px,2vw,28px); border-bottom: 1px solid rgba(0,0,0,0.12); }
.program-detail-kicker { margin: 0; color: #6422ce; font-family: var(--font-mono); font-size: 13px; font-weight: 950; letter-spacing: 1px; }
.program-detail-hero h3 { margin: 0; color: #111; font-size: clamp(34px,4vw,68px); line-height: 1.04; word-break: keep-all; overflow-wrap: break-word; }
.program-detail-hero > p:not(.program-detail-kicker) { max-width: 980px; margin: 0; color: #171717; font-size: clamp(20px,1.8vw,28px); font-weight: 950; line-height: 1.48; word-break: keep-all; overflow-wrap: break-word; }
.program-detail-meta { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; margin: 0; overflow: hidden; border: 1px solid rgba(0,0,0,0.12); border-radius: var(--radius-sm); background: rgba(0,0,0,0.12); }
.program-detail-meta div { display: grid; gap: 8px; min-height: 112px; align-content: start; padding: clamp(17px,1.8vw,24px); background: #fff; }
.program-detail-meta dt { color: #6422ce; font-family: var(--font-mono); font-size: 12px; font-weight: 950; letter-spacing: 0.7px; }
.program-detail-meta dd { margin: 0; color: #181818; font-size: 15px; font-weight: 800; line-height: 1.55; word-break: keep-all; overflow-wrap: break-word; }
.program-detail-section { display: grid; gap: clamp(14px,1.8vw,22px); padding-top: clamp(8px,1vw,16px); border-top: 1px solid rgba(0,0,0,0.12); }
.program-detail-heading { display: grid; gap: 8px; }
.program-detail-heading span { color: #6422ce; font-family: var(--font-mono); font-size: 12px; font-weight: 950; letter-spacing: 1px; }
.program-detail-heading h4 { margin: 0; color: #111; font-size: clamp(24px,2.4vw,38px); line-height: 1.18; word-break: keep-all; overflow-wrap: break-word; }
.program-detail-section > p { max-width: 960px; margin: 0; color: #303030; font-size: 16px; line-height: 1.86; word-break: keep-all; overflow-wrap: break-word; }
.program-detail-table-wrap { overflow-x: auto; border: 1px solid rgba(0,0,0,0.14); border-radius: var(--radius-sm); background: #fff; }
.program-detail-table { width: 100%; min-width: 720px; border-collapse: collapse; table-layout: fixed; }
.program-detail-table th,
.program-detail-table td { border-bottom: 1px solid rgba(0,0,0,0.12); border-left: 1px solid rgba(0,0,0,0.10); padding: clamp(15px,1.8vw,22px); vertical-align: middle; color: #2a2a2a; font-size: 15px; line-height: 1.72; word-break: keep-all; overflow-wrap: break-word; }
.program-detail-table th:first-child,
.program-detail-table td:first-child { border-left: 0; width: 210px; color: #111; font-weight: 950; text-align: center; background: #f0f0ef; }
.program-detail-table tr:last-child td { border-bottom: 0; }
.program-detail-table thead th { background: #ded8ee; color: #111; font-size: 13px; font-weight: 950; letter-spacing: 0.7px; text-align: center; }
.program-detail-lines { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.program-detail-lines li { position: relative; padding-left: 16px; }
.program-detail-lines li::before { content: ""; position: absolute; left: 0; top: 0.78em; width: 7px; height: 1px; background: rgba(0,0,0,0.54); }
.program-detail-table strong,
.program-detail-section strong { color: #050505; font-weight: 950; }
.program-detail-gallery { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.program-detail-gallery figure { display: grid; gap: 10px; margin: 0; min-width: 0; }
.program-detail-gallery img { display: block; width: 100%; aspect-ratio: 16/5.45; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid rgba(0,0,0,0.12); background: #fff; box-shadow: 0 16px 36px rgba(0,0,0,0.16); }
.program-detail-gallery figure.is-natural img { height: auto; aspect-ratio: auto; object-fit: contain; }
.program-detail-gallery figure.is-awards-crop img { aspect-ratio: 574 / 238; object-fit: cover; object-position: 62% 42%; }
.program-detail-gallery figcaption { color: #3b3b3b; font-size: 13px; font-weight: 850; line-height: 1.4; }
.legacy-venue-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.legacy-venue-card { display: grid; gap: 10px; min-height: 150px; padding: clamp(18px,2vw,26px); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: rgba(255,255,255,0.035); }
.legacy-venue-card strong { color: var(--text-strong); font-size: clamp(18px,1.5vw,22px); line-height: 1.25; }
.legacy-venue-card p { margin: 0; color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.62; word-break: keep-all; }
.legacy-venue-card span,
.legacy-venue-card a { align-self: end; justify-self: start; color: var(--lime); font-family: var(--font-mono); font-size: 12px; font-weight: 950; }
.legacy-venue-card a:hover { color: var(--text-strong); }
.board-pagination { display: flex; align-items: center; justify-content: center; gap: 7px; padding-top: 10px; }
.board-pagination a { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; color: rgba(255,255,255,0.62); font-size: 13px; font-weight: 900; }
.board-pagination a:hover,
.board-pagination a:focus-visible,
.board-pagination a.is-active { color: #fff; border-color: rgba(var(--key-purple-rgb),0.42); background: rgba(var(--key-purple-rgb),0.16); }
.board-pages { display: flex; align-items: center; justify-content: center; padding-top: clamp(18px,2.2vw,28px); }
.board-pages .pg_wrap { display: flex; align-items: center; justify-content: center; width: 100%; }
.board-pages .pg { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 0; padding: 0; font-size: 0; line-height: 1; }
.board-pages :where(.pg_page, .pg_current) { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; padding: 0 12px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; background: rgba(255,255,255,0.025); color: rgba(255,255,255,0.62); font-size: 13px; font-weight: 950; line-height: 1; text-decoration: none; vertical-align: top; box-shadow: none; }
.board-pages .pg_current { border-color: rgba(var(--key-purple-rgb),0.62); background: rgba(var(--key-purple-rgb),0.24); color: #fff; }
.board-pages .pg_page:hover,
.board-pages .pg_page:focus-visible { border-color: rgba(var(--key-purple-rgb),0.44); background: rgba(var(--key-purple-rgb),0.14); color: #fff; }
.board-pages :where(.pg_start, .pg_prev, .pg_next, .pg_end) { min-width: 44px; color: rgba(255,255,255,0.72); font-size: 0; }
.board-pages :where(.pg_start, .pg_prev, .pg_next, .pg_end)::before { font-size: 17px; font-weight: 950; line-height: 1; }
.board-pages .pg_start::before { content: "<<"; }
.board-pages .pg_prev::before { content: "<"; }
.board-pages .pg_next::before { content: ">"; }
.board-pages .pg_end::before { content: ">>"; }
.dfx-write-form { display: grid; gap: clamp(18px,2vw,28px); min-width: 0; }
.dfx-write-head { margin-bottom: 0; }
.dfx-write-panel { display: grid; gap: clamp(18px,1.8vw,26px); padding: clamp(22px,2.6vw,38px); border: 1px solid rgba(var(--key-purple-rgb),0.20); border-radius: var(--radius); background: rgba(14,14,20,0.88); }
.write-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; }
.write-field { display: grid; gap: 9px; min-width: 0; }
.write-label { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.76); font-size: 13px; font-weight: 950; line-height: 1.35; }
.write-label strong { color: var(--lime); font-size: 11px; font-weight: 950; }
.dfx-write-form :where(input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="file"], select, textarea) { width: 100%; min-height: 48px; margin: 0; padding: 0 15px; border: 1px solid rgba(255,255,255,0.13); border-radius: 10px; background: rgba(3,3,7,0.56); color: rgba(255,255,255,0.92); font: inherit; box-shadow: none; outline: none; transition: border-color var(--dur), background var(--dur), box-shadow var(--dur); }
.dfx-write-form :where(input, select, textarea)::placeholder { color: rgba(255,255,255,0.34); }
.dfx-write-form :where(input, select, textarea):focus { border-color: rgba(var(--key-purple-rgb),0.62); background: rgba(3,3,7,0.74); box-shadow: 0 0 0 3px rgba(var(--key-purple-rgb),0.16); }
.dfx-write-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.62) 50%), linear-gradient(135deg, rgba(255,255,255,0.62) 50%, transparent 50%); background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.dfx-write-form input[type="file"] { display: flex; align-items: center; min-height: 52px; padding: 12px; color: rgba(255,255,255,0.66); }
.dfx-write-form input[type="file"]::file-selector-button { min-height: 34px; margin-right: 12px; padding: 0 12px; border: 1px solid rgba(var(--key-purple-rgb),0.35); border-radius: 8px; background: rgba(var(--key-purple-rgb),0.18); color: #fff; font-weight: 900; cursor: pointer; }
.dfx-write-options { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.dfx-write-options li { display: inline-flex; align-items: center; min-height: 38px; padding: 0 12px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; background: rgba(255,255,255,0.035); color: rgba(255,255,255,0.76); font-size: 13px; font-weight: 900; }
.dfx-write-options input { width: 16px !important; min-height: 16px !important; margin: 0 7px 0 0 !important; padding: 0 !important; accent-color: var(--lime); }
.dfx-write-options label { display: inline-flex; align-items: center; cursor: pointer; }
.dfx-autosave { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; align-items: start; }
#btn_autosave.btn-autosave { min-height: 48px; border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.045); color: rgba(255,255,255,0.84); white-space: nowrap; box-shadow: none; }
#btn_autosave.btn-autosave:hover,
#btn_autosave.btn-autosave:focus-visible { border-color: rgba(var(--key-purple-rgb),0.48); background: rgba(var(--key-purple-rgb),0.16); color: #fff; }
#autosave_pop { position: absolute; z-index: 30; display: none; width: min(420px,calc(100vw - 40px)); margin-top: 58px; padding: 16px; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-sm); background: rgba(10,10,15,0.98); box-shadow: 0 24px 70px rgba(0,0,0,0.42); }
#autosave_pop strong { display: block; margin-bottom: 10px; color: #fff; font-size: 14px; }
#autosave_pop ul { display: grid; gap: 6px; max-height: 220px; margin: 0; padding: 0; overflow-y: auto; list-style: none; }
#autosave_pop li { color: rgba(255,255,255,0.72); font-size: 13px; }
#autosave_pop button { min-height: 34px; margin-top: 12px; padding: 0 12px; border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.82); font-weight: 900; cursor: pointer; }
.dfx-write-content { display: grid; gap: 10px; min-width: 0; }
.dfx-write-content textarea { min-height: 320px; padding: 15px; line-height: 1.75; resize: vertical; }
.dfx-write-content :where(iframe, table) { max-width: 100%; }
.dfx-write-content :where(.cke, .se2_input_area, .se2_tool) { max-width: 100%; }
.dfx-write-content .cke { border-color: rgba(255,255,255,0.14) !important; border-radius: 10px !important; overflow: hidden; }
#char_count_desc,
#char_count_wrap { margin: 0; color: rgba(255,255,255,0.52); font-size: 12px; line-height: 1.55; }
#char_count_wrap { text-align: right; }
.write-file-field { padding: 14px; border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm); background: rgba(255,255,255,0.025); }
.file_del { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.62); font-size: 13px; }
.file_del input { width: 16px !important; min-height: 16px !important; padding: 0 !important; accent-color: var(--lime); }
.dfx-captcha { padding: 14px; border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-sm); background: rgba(255,255,255,0.025); }
.dfx-write-actions { justify-content: flex-end; padding-top: 0; }
.board-write-page .board-main { padding: clamp(24px,3vw,48px); border: 1px solid rgba(0,0,0,0.12); border-radius: var(--radius); background: #f5f4ef; color: #151515; box-shadow: 0 24px 80px rgba(0,0,0,0.28); }
.board-write-page .board-head { padding: 0 0 clamp(18px,2vw,28px); border: 0; border-bottom: 1px solid rgba(0,0,0,0.12); border-radius: 0; background: transparent; }
.board-write-page .board-head h2 { color: #111; }
.board-write-page .board-desc { color: #4a4a4a; }
.board-write-page .board-head .panel-kicker { color: #6422ce; }
.board-write-page .dfx-write-panel { padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.board-write-page .write-label { color: #222; }
.board-write-page .write-label strong { color: #6422ce; }
.board-write-page .dfx-write-form :where(input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="file"], select, textarea) { border-color: rgba(0,0,0,0.16); background: #fff; color: #111; }
.board-write-page .dfx-write-form :where(input, select, textarea)::placeholder { color: rgba(0,0,0,0.38); }
.board-write-page .dfx-write-form :where(input, select, textarea):focus { border-color: rgba(var(--key-purple-rgb),0.64); background: #fff; box-shadow: 0 0 0 3px rgba(var(--key-purple-rgb),0.12); }
.board-write-page .dfx-write-form select { background-image: linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.62) 50%), linear-gradient(135deg, rgba(0,0,0,0.62) 50%, transparent 50%); }
.board-write-page .dfx-write-form input[type="file"] { color: #454545; }
.board-write-page .dfx-write-form input[type="file"]::file-selector-button { border-color: rgba(var(--key-purple-rgb),0.28); background: rgba(var(--key-purple-rgb),0.08); color: #111; }
.board-write-page .dfx-write-options li { border-color: rgba(0,0,0,0.12); background: rgba(255,255,255,0.72); color: #222; }
.board-write-page .dfx-write-options input { accent-color: #6422ce; }
.board-write-page #btn_autosave.btn-autosave { border-color: rgba(0,0,0,0.16); background: #fff; color: #222; }
.board-write-page #btn_autosave.btn-autosave:hover,
.board-write-page #btn_autosave.btn-autosave:focus-visible { border-color: rgba(var(--key-purple-rgb),0.42); background: rgba(var(--key-purple-rgb),0.08); color: #111; }
.board-write-page #autosave_pop { border-color: rgba(0,0,0,0.14); background: #fff; box-shadow: 0 24px 70px rgba(0,0,0,0.18); }
.board-write-page #autosave_pop strong { color: #111; }
.board-write-page #autosave_pop li { color: #333; }
.board-write-page #autosave_pop button { border-color: rgba(0,0,0,0.14); background: #f3f3f3; color: #222; }
.board-write-page .dfx-write-content textarea { border-color: rgba(0,0,0,0.16); background: #fff; color: #111; }
.board-write-page .dfx-write-content :where(iframe, table) { background: #fff; }
.board-write-page #char_count_desc,
.board-write-page #char_count_wrap { color: #5a5a5a; }
.board-write-page .write-file-field,
.board-write-page .dfx-captcha { border-color: rgba(0,0,0,0.12); background: rgba(255,255,255,0.62); }
.board-write-page .file_del { color: #555; }
.board-write-page .file_del input { accent-color: #6422ce; }
.board-write-page .board-tools .btn-line,
.board-write-page .dfx-write-actions .btn-line { border-color: rgba(0,0,0,0.18); background: #fff; color: #222; }
.board-write-page .board-tools .btn-line:hover,
.board-write-page .dfx-write-actions .btn-line:hover { border-color: rgba(var(--key-purple-rgb),0.42); background: rgba(var(--key-purple-rgb),0.08); color: #111; }
.board-view { padding: clamp(22px,2.6vw,38px); border: 1px solid rgba(var(--key-purple-rgb),0.20); border-radius: var(--radius); background: rgba(14,14,20,0.88); }
.view-head { display: grid; gap: 12px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.view-head h2 { color: var(--text-strong); font-size: clamp(28px,3vw,48px); line-height: 1.12; word-break: keep-all; }
.view-head .board-meta { text-align: left; }
.view-body { display: grid; gap: 16px; padding: 26px 0; color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.85; }
.view-body p { margin: 0; }
.view-info { margin-top: 8px; overflow: hidden; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: rgba(5,5,8,0.44); }
.view-info dl { display: grid; margin: 0; }
.view-info div { display: grid; grid-template-columns: 140px minmax(0,1fr); border-top: 1px solid rgba(255,255,255,0.08); }
.view-info div:first-child { border-top: 0; }
.view-info dt, .view-info dd { margin: 0; padding: 13px 15px; font-size: 13px; line-height: 1.6; }
.view-info dt { color: rgba(255,255,255,0.58); font-weight: 950; background: rgba(255,255,255,0.045); }
.view-info dd { color: rgba(255,255,255,0.84); word-break: keep-all; overflow-wrap: break-word; }
.view-files { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 16px; border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius-sm); background: rgba(5,5,8,0.56); }
.view-files strong { color: rgba(255,255,255,0.62); font-size: 13px; }
.view-files a { color: var(--lime); font-size: 13px; font-weight: 900; }
.view-nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); }
.view-nav a { display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; color: rgba(255,255,255,0.74); font-size: 13px; font-weight: 900; }
.view-nav a:hover { color: #fff; background: rgba(var(--key-purple-rgb),0.14); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .notice-row, .about { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-poster-card { justify-self: start; width: min(48vw,300px); margin-left: 0; transform: none; }
  .record-video { grid-template-columns: 1fr; }
  .record-video-copy { max-width: 760px; }
  .supporters-layout { grid-template-columns: 1fr; }
  .supporters-guide { position: static; grid-template-columns: repeat(3,minmax(0,1fr)); }
  .board-layout { grid-template-columns: 1fr; }
  .board-side { position: static; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); }
  .subpage-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .legacy-about,
  .legacy-split,
  .legacy-poster-layout,
  .legacy-doc-layout { grid-template-columns: 1fr; }
  .program-detail-layout { grid-template-columns: 1fr; }
  .legacy-doc-label { position: static; }
  .legacy-concept-grid,
  .legacy-jury-grid,
  .legacy-history-images { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .archive-page .board-content-body .col-md-5,
  .archive-page .board-content-body .col-md-7 { grid-column: span 6; }
  .archive-page .board-content-body .col-md-3 { grid-column: span 4; }
  .legacy-org-list { grid-template-columns: 1fr; }
  .record-detail { grid-template-columns: 1fr; }
  .archive-strip { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .program-panel { width: min(72vw,760px); min-width: 440px; }
  .program-panel.is-prev { transform: translate(-118%,-50%) scale(0.68); }
  .program-panel.is-next { transform: translate(18%,-50%) scale(0.68); }
  .topnav { display: none; }
  .top-sns { display: none; }
  .menu-toggle { display: grid; }
  .side-quick { display: none; }
}
@media (max-width: 560px) {
  .hero-inner { padding-top: 54px; }
  .hero-poster-card { width: min(70vw,240px); min-width: 0; }
  .hero-poster-card figcaption { display: none; }
  .main-section-head { margin-bottom: 22px; }
  .main-section-head h2 { font-size: 28px; }
  .sec-record-video { padding-top: 38px; }
  .record-video-copy h2 { font-size: 28px; }
  .record-video-copy p:not(.section-eyebrow):not(.panel-kicker) { font-size: 14px; }
  .record-video-player { border-radius: var(--radius-sm); }
  .record-video-play { width: 62px; }
  .record-video-play::before { border-top-width: 10px; border-bottom-width: 10px; border-left-width: 16px; }
  .qm-grid { grid-template-columns: repeat(2,1fr); }
  .program-stage { min-height: 0; padding-bottom: 58px; overflow: visible; }
  .program-viewport { height: auto; min-height: 0; overflow: visible; }
  .program-panel { position: relative; top: auto; left: auto; display: none; width: 100%; min-width: 0; aspect-ratio: 4/3; transform: none; opacity: 1; }
  .program-panel.is-active { display: block; transform: none; }
  .program-panel.is-prev, .program-panel.is-next, .program-panel.is-away { display: none; }
  .program-visual { inset: 0; border-radius: inherit; }
  .program-panel::after { background: linear-gradient(180deg, rgba(5,5,8,0.10) 0%, rgba(5,5,8,0.64) 60%, rgba(5,5,8,0.92) 100%); }
  .prog-body { left: 18px; right: 18px; bottom: 18px; width: auto; }
  .prog-name { font-size: 28px; }
  .prog-desc { font-size: 12.5px; }
  .stage-arrow { top: 42%; width: 38px; height: 38px; font-size: 24px; }
  .program-tabs { left: 0; right: 0; bottom: 0; transform: none; justify-content: flex-start; overflow-x: auto; border-radius: var(--radius-sm); }
  .program-tab { min-width: max-content; }
  .archive-page .supporters-hero-inner > p:not(.supporters-kicker):not(.panel-kicker) {
    max-width: calc(100vw - 32px);
    font-size: 14px;
    line-height: 1.62;
  }
  .archive-page .board-sec { padding-top: 30px; }
  .archive-page .board-content { padding: 8px; }
  .archive-page .board-content-body { width: 100%; max-width: 100%; padding: 16px; border-radius: 8px; font-size: 14px; overflow: hidden; }
  .archive-page .board-content-body > div { display: block; width: 100%; max-width: 100%; overflow: hidden; }
  .archive-page .board-content-body .row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    gap: 18px;
  }
  .archive-page .board-content-body .col-md-12,
  .archive-page .board-content-body .col-sm-12,
  .archive-page .board-content-body .col-md-7,
  .archive-page .board-content-body .col-md-5 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .archive-page .board-content-body .col-md-3 {
    flex: 0 0 calc(50% - 9px);
    width: calc(50% - 9px);
    max-width: calc(50% - 9px);
  }
  .archive-page .board-content-body .col-sm-6,
  .archive-page .board-content-body .col-sm-4 {
    flex: 0 0 calc(50% - 9px);
    width: calc(50% - 9px);
    max-width: calc(50% - 9px);
  }
  .archive-page .board-content-body .col-md-12 { overflow-x: auto; }
  .archive-page .board-content-body .video-wrap { display: block; width: 100% !important; max-width: 100% !important; }
  .archive-page .board-content-body .video-wrap iframe { width: 100% !important; max-width: 100% !important; min-width: 0 !important; }
  .archive-page .board-content-body .tw-text-5xl { font-size: 31px; }
  .archive-page .board-content-body .tw-text-4xl { font-size: 24px; }
  .archive-page .board-content-body .tw-text-3xl { font-size: 18px; }
  .archive-page .board-content-body p { font-size: 14px; line-height: 1.72; }
  .archive-page .board-content-body .table { min-width: 680px; font-size: 12.5px; }
  .archive-page .board-content-body .table :where(th, td) { padding: 10px; }
  .jury-grid { grid-template-columns: repeat(2,1fr); }
  .archive-strip { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; }
  .archive-card { flex: 0 0 42%; min-width: 132px; }
  .poster { width: 42%; min-width: 130px; }
  .supporters-hero { padding-top: 54px; }
  .supporters-meta span { width: 100%; justify-content: space-between; }
  .supporters-guide { grid-template-columns: 1fr; }
  .recruit-row { grid-template-columns: 1fr; }
  .recruit-row strong { padding-bottom: 4px; background: transparent; }
  .recruit-row span { padding-top: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .agreement-field-row { grid-template-columns: 1fr; }
  .agreement-sign { justify-items: start; }
  .consent-line { align-items: flex-start; flex-direction: column; }
  .agree-options { justify-content: flex-start; gap: 10px; }
  .agree-options label { width: 100%; }
  .summary-grid { grid-template-columns: 1fr; }
  .receipt-number, .list-toolbar { align-items: flex-start; flex-direction: column; }
  .list-actions { justify-content: flex-start; }
  .detail-list div { grid-template-columns: 1fr; }
  .detail-list dd { padding-top: 0; }
  .board-side { grid-template-columns: 1fr; }
  .board-index-grid { grid-template-columns: 1fr; }
  .subpage-card-grid,
  .subpage-archive { grid-template-columns: 1fr; }
  .legacy-action-grid,
  .legacy-venue-grid,
  .program-detail-meta,
  .program-detail-gallery { grid-template-columns: 1fr; }
  .program-detail-hero h3 { font-size: 34px; }
  .program-detail-table { min-width: 0; }
  .program-detail-table thead { display: none; }
  .program-detail-table,
  .program-detail-table tbody,
  .program-detail-table tr,
  .program-detail-table td { display: block; width: 100%; }
  .program-detail-table tr { padding: 16px; border-bottom: 1px solid rgba(0,0,0,0.12); }
  .program-detail-table tr:last-child { border-bottom: 0; }
  .program-detail-table td { border: 0; padding: 0; text-align: left; }
  .program-detail-table td + td { margin-top: 12px; }
  .program-detail-table td::before { content: attr(data-label); display: block; margin-bottom: 6px; color: #6422ce; font-family: var(--font-mono); font-size: 11px; font-weight: 950; letter-spacing: 0.7px; }
  .program-detail-table td:first-child { width: auto; padding: 12px; border-radius: 8px; text-align: left; }
  .program-detail-section > p { font-size: 14px; line-height: 1.76; }
  .legacy-title-box h2 { font-size: 30px; }
  .legacy-big-title { font-size: 28px; }
  .legacy-text,
  .legacy-history-copy p,
  .legacy-doc-intro p { font-size: 14px; line-height: 1.76; }
  .legacy-doc-intro h3 { font-size: 25px; }
  .legacy-doc-images figcaption { text-align: left; }
  .legacy-concept-grid,
  .legacy-jury-grid,
  .legacy-history-images { grid-template-columns: 1fr; }
  .legacy-concept-grid dl { min-height: 150px; }
  .legacy-logo-panel,
  .legacy-org-chart { padding: 18px; }
  .legacy-org-list li { grid-template-columns: 72px minmax(0,1fr); min-height: 102px; }
  .legacy-history-images { display: flex; overflow-x: auto; padding-bottom: 8px; }
  .legacy-history-images li { flex: 0 0 64%; }
  .board-table-head { display: none; }
  .board-head { align-items: flex-start; flex-direction: column; }
  .board-tools { justify-content: flex-start; width: 100%; }
  .board-search { min-width: 0; width: 100%; }
  .board-row { grid-template-columns: 1fr; gap: 8px; align-items: start; }
  .board-row strong { white-space: normal; }
  .board-meta { text-align: left; white-space: normal; }
  .view-info div { grid-template-columns: 1fr; }
  .view-info dd { padding-top: 0; }
  .view-nav { align-items: stretch; flex-direction: column; }
  .write-grid,
  .dfx-autosave { grid-template-columns: 1fr; }
  .btn-autosave { width: 100%; }
  #autosave_pop { position: static; width: 100%; margin-top: 10px; }
  .form-actions { justify-content: stretch; }
  .form-actions .btn { width: 100%; }
  .form-status { text-align: left; }
  .foot-mid { margin-left: 0; text-align: left; }
  .foot-links, .foot-info { justify-content: flex-start; }
  .hero-foot { gap: 12px; }
  .util-right { display: none; }
  .brand-text small { display: none; }
  .brand-date { display: none; }
  .brand-logo { height: 32px; }
  .lang-btn { font-size: 11px; }
  .lang-ic { width: 15px; height: 15px; margin-right: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .cursor-canvas { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Login page: keep account/admin access bright and readable like the original site. */
.eb-login { min-height: 100vh !important; background: #fff !important; color: #171c29 !important; font-family: var(--font-body) !important; }
.eb-login .login-content { min-height: 100vh !important; background: #fff !important; }
.eb-login .login-box { width: min(460px, calc(100vw - 40px)) !important; padding: 0 !important; }
.eb-login .login-box .login-box-in { width: 100% !important; height: auto !important; padding: 0 !important; }
.eb-login .login-box .login-box-in .login-form { padding: 0 !important; color: #171c29 !important; }
.eb-login .login-box .login-box-in .login-form h1 { margin: 0 0 34px !important; color: #171c29 !important; font-size: 31px !important; font-weight: 900 !important; line-height: 1.15 !important; text-align: center !important; }
.eb-login .eyoom-form section { margin: 0 0 18px !important; }
.eb-login .eyoom-form .label { display: block !important; margin: 0 0 9px !important; color: #444 !important; font-size: 17px !important; font-weight: 850 !important; line-height: 1.35 !important; }
.eb-login .eyoom-form .input { position: relative !important; display: block !important; }
.eb-login .eyoom-form .input input { box-sizing: border-box !important; width: 100% !important; height: 40px !important; margin: 0 !important; padding: 0 14px !important; border: 1px solid #d7d7d7 !important; border-radius: 0 !important; background: #fff !important; color: #171c29 !important; font-size: 17px !important; line-height: 40px !important; box-shadow: none !important; }
.eb-login .eyoom-form .input input::placeholder { color: #a8a8a8 !important; }
.eb-login .eyoom-form .input .icon-append,
.eb-login .eyoom-form .input .pv-icon { display: none !important; }
.eb-login .checkbox,
.eb-login .checkbox i,
.eb-login .login-box .login-box-in .login-link a,
.eb-login .text-center a { color: #171c29 !important; font-size: 16px !important; font-weight: 700 !important; }
.eb-login .login-box .login-box-in .login-link { margin: 20px 0 16px !important; text-align: center !important; }
.eb-login .login-box .login-box-in .login-link a:hover,
.eb-login .text-center a:hover { color: #6422ce !important; text-decoration: underline !important; }
.eb-login .login-btn .btn-e-lg { height: 52px !important; padding: 0 !important; border: 0 !important; border-radius: 4px !important; background: #30303b !important; color: #fff !important; font-size: 19px !important; font-weight: 900 !important; line-height: 52px !important; }
.eb-login .login-btn .btn-e-lg:hover { background: #171c29 !important; border: 0 !important; }
.eb-login .text-center.m-t-20 { margin-top: 24px !important; text-align: center !important; }

@media (max-width: 576px) {
  .eb-login .login-box { width: calc(100vw - 32px) !important; }
  .eb-login .login-box .login-box-in .login-form h1 { font-size: 28px !important; }
}
