:root{--primary-gradient: linear-gradient(135deg, #00acc1 0%, #0097a7 100%);--text-gradient: linear-gradient(135deg, #00838f 0%, #00acc1 100%);--background-gradient: linear-gradient(135deg, #f0fdff 0%, #e0f7fa 100%);--surface-color: rgba(255, 255, 255, .9);--text-color: #546e7a;--heading-color: #00695c;--border-color: rgba(255, 255, 255, .7);--shadow-color: rgba(0, 172, 193, .15);--shadow-hover-color: rgba(0, 172, 193, .25);--border-radius-lg: 24px;--border-radius-pill: 50px}*,*:before,*:after{box-sizing:border-box;margin:0;padding:0}html{font-size:16px;scroll-behavior:smooth}body{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hirgano Sans GB,Microsoft YaHei,sans-serif;background:var(--background-gradient);color:var(--text-color);line-height:1.7;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden;position:relative;min-height:100vh}body:before,body:after{content:"";position:fixed;background:radial-gradient(circle,rgba(255,255,255,.4) 0%,transparent 70%);border-radius:50%;pointer-events:none;z-index:-1}body:before{width:500px;height:500px;top:-150px;right:-150px;animation:float 10s ease-in-out infinite}body:after{width:400px;height:400px;bottom:-100px;left:-100px;animation:float 12s ease-in-out infinite reverse}@keyframes float{0%,to{transform:translate(0) scale(1)}50%{transform:translate(40px,-20px) scale(1.1)}}.app-shell{display:flex;flex-direction:column;min-height:100vh}.main-header{background-color:#ffffffb3;-webkit-backdrop-filter:saturate(180%) blur(10px);backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid var(--border-color);padding:1.25rem 2.5rem;position:sticky;top:0;z-index:1000}.header-container{max-width:1400px;margin:0 auto;display:flex;justify-content:space-between;align-items:center}.main-content{flex-grow:1;padding:0}.content-container{width:100%;max-width:1200px;margin:0 auto;padding:0 1.5rem}.main-footer{background-color:transparent;color:#00695c;padding:4rem 2.5rem 3rem;text-align:center}.footer-container{max-width:1400px;margin:0 auto}.logo{display:flex;align-items:center;gap:.8rem;text-decoration:none;color:var(--heading-color);font-weight:600;font-size:1.3rem}.logo-icon{width:48px;height:48px;color:#0097a7}.btn{padding:.8rem 2rem;border:none;border-radius:var(--border-radius-pill);font-weight:700;font-size:1rem;cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;transition:all .3s ease;position:relative;overflow:hidden;letter-spacing:.5px}.btn-primary{background:var(--primary-gradient);color:#fff;box-shadow:0 10px 25px var(--shadow-color)}.btn-primary:hover{transform:translateY(-3px) scale(1.03);box-shadow:0 15px 35px var(--shadow-hover-color)}.btn-secondary{background:#fffc;color:var(--heading-color);box-shadow:0 4px 15px #0000000d}.btn-secondary:hover{background:#fff;transform:translateY(-3px)}.btn-primary:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);transition:left .7s ease}.btn-primary:hover:before{left:100%}.footer-nav-links{list-style:none;display:flex;justify-content:center;gap:2.5rem;margin-bottom:2rem;flex-wrap:wrap}@keyframes spin{to{transform:rotate(360deg)}}.animate-spin{animation:spin 1s linear infinite}.markdown-body{line-height:1.8;color:#333}.markdown-body h1,.markdown-body h2,.markdown-body h3{margin-top:1.5em;margin-bottom:.8em;color:#00695c}.markdown-body p{margin-bottom:1em}.markdown-body strong{color:#00838f}.markdown-body table{width:100%;border-collapse:collapse;margin-bottom:1.5rem;display:block;overflow-x:auto}.markdown-body th,.markdown-body td{padding:.75rem;border:1px solid #e0e0e0;text-align:left}.markdown-body th{background-color:#f8f9fa;font-weight:600;color:#00695c}.markdown-body tr:nth-child(2n){background-color:#fcfcfc}.annotations-panel{background:#e0f7fa;border-radius:8px;padding:1.5rem;border:1px solid #b2ebf2;height:fit-content}.annotation-card{background:#fff;border-radius:6px;padding:1rem;margin-bottom:1rem;box-shadow:0 2px 4px #0000000d;border-left:4px solid #00acc1;transition:transform .2s}.annotation-card:hover{transform:translate(5px)}.annotation-content{font-size:.95rem;color:#555}.footer-nav-links a{color:var(--heading-color);text-decoration:none;transition:color .2s ease;font-weight:500}.footer-nav-links a:hover{color:#004d40}.footer-legal-info{font-size:.9rem;color:#00796b}.footer-legal-info a{color:#00796b;text-decoration:none}.footer-legal-info a:hover{text-decoration:underline;color:#004d40}.footer-legal-info span{padding:0 .75rem;color:#00796b66}.text-gradient{background:var(--text-gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.card{background:var(--surface-color);border-radius:var(--border-radius-lg);box-shadow:0 10px 30px #0000000d;padding:2rem;border:1px solid var(--border-color);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}label{display:block;margin-bottom:.5rem;font-weight:500;color:#00695c}input[type=text],input[type=email],input[type=password],textarea,select{width:100%;padding:.8rem 1rem;border:1px solid rgba(0,172,193,.3);border-radius:12px;background:#fffc;font-family:inherit;font-size:1rem;color:var(--text-color);transition:all .3s ease;outline:none}input:focus,textarea:focus,select:focus{border-color:#00acc1;box-shadow:0 0 0 3px #00acc11a;background:#fff}.fade-in-up{opacity:0;transform:translateY(30px);animation:fadeInUp .8s ease-out forwards}@keyframes fadeInUp{to{opacity:1;transform:translateY(0)}}@media(max-width:768px){.main-header,.main-footer{padding:1.5rem}.hero-actions{flex-direction:column}}.hero{padding:8rem 0;text-align:center}.hero-title{font-size:3.8rem;font-weight:800;line-height:1.2;margin-bottom:1.5rem;background:var(--text-gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent}.hero-subtitle{font-size:1.3rem;max-width:800px;margin:0 auto 2.5rem;color:var(--text-color);font-weight:400}.hero-actions{display:flex;justify-content:center;align-items:center;gap:1.5rem}.section{padding:6rem 0}.section-title{font-size:2.5rem;text-align:center;margin-bottom:1rem;color:var(--heading-color)}.section-subtitle{text-align:center;max-width:600px;margin:0 auto 4rem;color:#666}.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;max-width:1200px;margin:0 auto}.feature-card{background:#fff;padding:2.5rem;border-radius:20px;box-shadow:0 10px 30px #00000008;transition:transform .3s ease;border:1px solid rgba(0,0,0,.03)}.feature-card:hover{transform:translateY(-10px)}.feature-icon{width:70px;height:70px;background:#e0f7fa;border-radius:20px;display:flex;align-items:center;justify-content:center;color:#00acc1;margin-bottom:1.5rem}.feature-title{font-size:1.4rem;margin-bottom:1rem;color:var(--heading-color)}.cta-section{background:var(--primary-gradient);border-radius:30px;padding:4rem 2rem;text-align:center;color:#fff;box-shadow:0 20px 40px #00acc14d}.cta-title{font-size:2.5rem;margin-bottom:1rem;color:#fff}.cta-subtitle{font-size:1.2rem;margin-bottom:2.5rem;opacity:.9}:root{color-scheme:light}a{color:inherit;text-decoration:none}body{margin:0;min-width:320px;min-height:100vh;background:radial-gradient(circle at 15% 8%,rgba(255,212,124,.18),transparent 26%),radial-gradient(circle at 88% 0%,rgba(255,127,92,.14),transparent 24%),radial-gradient(circle at 50% 100%,rgba(181,18,41,.22),transparent 30%),linear-gradient(180deg,#4a0714,#690d1e 38%,#7a1626);color:#fff7ef;font-family:Source Han Sans SC,PingFang SC,Microsoft YaHei,sans-serif}#root,.app-shell{min-height:100vh}.site-header{position:sticky;top:0;z-index:20;-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px);background:#600e1fc7;border-bottom:1px solid rgba(255,220,165,.18)}.site-header-inner,.site-footer-inner,.page-shell{width:min(1180px,calc(100vw - 32px));margin:0 auto}.site-header-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:18px 0}.brand{display:flex;align-items:center;gap:14px;text-decoration:none!important}.brand-badge{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:14px;background:linear-gradient(135deg,#ffd88f,#f4b02f);color:#7a1626;box-shadow:0 12px 24px #f4b02f3d}.brand strong{display:block;font-size:1.02rem;letter-spacing:.02em}.brand em{display:block;font-style:normal;color:#fff0e1bd;font-size:.78rem}.site-nav{display:flex;align-items:center;justify-content:flex-end;gap:12px;flex-wrap:wrap;flex:1}.nav-link,.ghost-link{display:inline-flex;align-items:center;gap:8px;min-height:44px;padding:0 16px;border-radius:999px;color:#eef4ffe0;font-size:.95rem;border:1px solid rgba(255,255,255,.08);background:#ffffff0a;text-decoration:none!important;overflow:hidden;transition:transform .2s ease,border-color .2s ease,background .2s ease}.nav-link:hover,.ghost-link:hover{transform:translateY(-1px);border-color:#ffd88f59;background:#ffe0b41a}.site-actions,.action-row,.chip-row,.hero-actions{display:flex;gap:12px}.site-actions{align-items:center;flex-wrap:wrap}.btn-primary,.btn-secondary,.btn-personalized{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:46px;border:1px solid transparent;cursor:pointer;border-radius:999px;padding:12px 18px;font-weight:700;letter-spacing:.01em;position:relative;overflow:hidden;isolation:isolate;text-decoration:none!important;transition:transform .2s ease,opacity .2s ease,border-color .2s ease,box-shadow .2s ease}.btn-primary{background:linear-gradient(135deg,#ffdf9d,#f4b02f);color:#7a1626;box-shadow:0 16px 30px #f4b02f47}.btn-primary.ghost{background:#ffffff0f;color:#eef4ff;border-color:#ffffff1f;box-shadow:none}.btn-secondary{background:#fff5e814;color:#fff7ef;border:1px solid rgba(255,226,190,.18)}.btn-personalized{background:linear-gradient(135deg,#ff8e6e,#cc2d44);color:#fff7f3;border-color:#ff96784d;box-shadow:0 16px 34px #b7203952}.btn-primary:hover,.btn-secondary:hover,.btn-personalized:hover{transform:translateY(-1px)}.btn-primary:hover{color:#7a1626;box-shadow:0 18px 34px #ffdb9142}.btn-secondary:hover{background:#fff0dc24;color:#fff7ef;border-color:#ffd88f47;box-shadow:0 14px 30px #0000002e}.btn-personalized:hover{color:#fff9f6;border-color:#ff947e73;box-shadow:0 20px 40px #bc384a57;background:linear-gradient(135deg,#ff9682,#dd5c6f)}.interaction-locked,.interaction-locked:hover,.interaction-locked:focus-visible{cursor:not-allowed;opacity:.72;transform:none}.interaction-locked.btn-primary,.interaction-locked.btn-primary:hover{box-shadow:0 14px 30px #79dccd1f}.interaction-locked.btn-personalized,.interaction-locked.btn-personalized:hover{box-shadow:0 14px 28px #b6394524}.interaction-locked.btn-secondary,.interaction-locked.btn-secondary:hover,.interaction-locked.btn-primary.ghost,.interaction-locked.btn-primary.ghost:hover{box-shadow:none}.wallet-pill,.user-pill,.pill{border-radius:999px;padding:8px 12px;font-size:.85rem}.wallet-pill{background:#f4b02f2e;color:#ffe4a8}.user-pill{background:#ffffff14}.page-shell{padding:52px 0 64px}.hero-panel,.subject-hero,.prediction-card,.submission-form,.submission-card,.feature-card,.metric-card,.summary-card,.history-panel,.modal-card,.feedback-banner{border:1px solid rgba(255,223,174,.14);background:linear-gradient(180deg,#6d0e21f0,#4f0918f5),radial-gradient(circle at top left,rgba(255,216,143,.12),transparent 40%);box-shadow:0 22px 52px #0000003d}.hero-panel,.subject-hero{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(300px,.95fr);gap:26px;border-radius:32px;padding:34px;margin-bottom:30px}.hero-copy h1,.subject-hero h1,.section-title h1,.section-title h2{margin:0}.hero-copy h1{font-family:"Noto Serif SC","Source Han Serif SC",STSong,serif;font-size:clamp(2.2rem,4vw,3.5rem);line-height:1.16;margin-top:10px}.hero-copy p,.subject-hero p,.prediction-card p,.feature-card p,.submission-card p{color:#eef4ffc7;line-height:1.74}.hero-metrics,.subject-hero-side{display:grid;gap:14px}.subject-page .subject-hero{grid-template-columns:minmax(0,1.88fr) minmax(200px,.56fr);gap:18px;padding:20px 24px;margin-bottom:18px;align-items:center}.subject-hero-copy{display:grid;gap:10px;align-content:start}.subject-hero-copy h1{font-size:clamp(1.9rem,2.8vw,2.7rem);line-height:1.12}.subject-page .subject-hero .section-kicker{font-size:.82rem}.subject-hero-copy p{margin:0;font-size:.96rem;line-height:1.58}.subject-page .subject-hero .hero-tag-row{margin-top:2px;gap:8px}.subject-page .subject-hero .chip{padding:7px 11px;font-size:.8rem}.subject-page .subject-hero-side{grid-template-columns:repeat(1,minmax(0,1fr));gap:10px;align-content:center}.metric-card.subject-hero-metric{display:grid;min-height:0;border-radius:20px;padding:14px 16px;gap:6px}.metric-card.subject-hero-metric .metric-label{font-size:.84rem;letter-spacing:.03em}.metric-card.subject-hero-metric strong{font-size:clamp(1.45rem,1.9vw,2rem);line-height:1.05;margin:2px 0 0}.metric-card,.summary-card{border-radius:22px;padding:22px}.metric-card strong,.summary-card strong{display:block;font-size:2rem;margin:6px 0}.section-kicker,.section-title span{letter-spacing:.16em;text-transform:uppercase;color:#ffd88f;font-size:1rem}.section-title{display:flex;flex-direction:column;gap:10px;margin-bottom:20px}.section-title h1,.section-title h2{font-family:"Noto Serif SC","Source Han Serif SC",STSong,serif;font-size:clamp(1.6rem,2vw,2.15rem);line-height:1.24}.subject-grid-layout>.content-column>.section-title h2,.subject-grid-layout>.side-column>.section-title h2{font-size:clamp(1.25rem,1.45vw,1.72rem);line-height:1.34;letter-spacing:.01em;color:#fff1db;margin-top:4px}.section-title-left{text-align:left;align-items:flex-start}.section-title-centered{text-align:center;align-items:center}.page-heading{margin-bottom:24px}.landing-page,.subject-page,.my-page{display:grid;gap:28px}.landing-hero-panel{position:relative;overflow:hidden}.landing-hero-panel:after,.subject-card:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none}.landing-hero-panel:after{background:radial-gradient(circle at 80% 18%,rgba(255,216,143,.18),transparent 24%),radial-gradient(circle at 15% 0%,rgba(255,112,73,.16),transparent 22%)}.hero-actions-left{justify-content:flex-start;flex-wrap:wrap;margin-top:46px}.hero-button{min-width:168px}.hero-tag-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:22px}.landing-metrics{align-content:start}.hero-metric-card{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:18px 20px;min-height:0}.metric-card-highlight{border-color:#e8c27d2e}.metric-card-body{display:grid;gap:12px;min-width:0;flex:1}.metric-card-head{display:flex;align-items:center;gap:10px}.metric-icon{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:12px;background:#ffffff0f;color:#ffd88f;border:1px solid rgba(255,232,200,.12)}.metric-label{display:inline-flex;align-items:center;color:#ffe8c8b8;font-size:.84rem;letter-spacing:.06em}.metric-value-row{display:flex;align-items:flex-end;justify-content:flex-end;gap:8px;flex-shrink:0;min-width:92px}.metric-value-row strong{margin:0;font-size:2.35rem;line-height:1}.metric-value-row em{font-style:normal;color:#ffe8c8a3;font-size:.92rem;padding-bottom:4px}.metric-copy{color:#ffefe0cc;line-height:1.58;font-size:.98rem;max-width:30ch}.subject-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.subject-card,.feature-card{position:relative;display:flex;flex-direction:column;gap:14px;min-height:256px;border-radius:26px;padding:24px;overflow:hidden}.subject-card{background:linear-gradient(180deg,#700d21f0,#540a19f5),radial-gradient(circle at top left,var(--subject-accent),transparent 52%);text-decoration:none!important;transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease}.subject-card:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(135deg,rgba(255,255,255,.05),transparent 55%);pointer-events:none}.subject-card:hover{transform:translateY(-4px);border-color:#ffd88f42;box-shadow:0 26px 52px #0000004d}.subject-card.disabled{opacity:.72}.subject-card-head,.subject-card-footer,.panel-header,.history-item-row{display:flex;align-items:center;justify-content:space-between;gap:12px}.subject-card h3,.prediction-card h3,.feature-card h3,.history-panel h2,.modal-card h3{font-family:"Noto Serif SC","Source Han Serif SC",STSong,serif}.subject-card h3{font-size:1.5rem;line-height:1.28}.subject-card-code{color:#eef4ff6b;font-size:.84rem}.subject-card-footer{margin-top:auto;color:#eef4ffc7;font-size:.92rem}.subject-card-footer strong{font-size:.92rem}.subject-card-footer span{display:grid;grid-auto-flow:column;align-items:center;gap:6px;color:#eef4ff}.feature-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.feature-card{min-height:220px}.feature-card h3{font-size:1.32rem;line-height:1.34}.grid-section,.history-grid{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(320px,.92fr);gap:24px}.my-page-grid{grid-template-columns:repeat(2,minmax(0,1fr));align-items:start}.history-panel-wide{grid-column:span 2}.prediction-card,.submission-form,.submission-card,.history-panel{border-radius:26px;padding:24px}.prediction-card{margin-bottom:18px}.prediction-card-top{display:flex;gap:10px;flex-wrap:wrap}.pill{background:#ffffff14}.pill.official{background:#ffdda329;color:#ffe6ae}.pill.community{background:#ff6d4c26;color:#ffd0c0}.pill.heat{background:#f4b02f2e;color:#ffe6ae}.pill.votes{background:#ffffff1f}.chip-row{display:flex;flex-wrap:wrap;margin:14px 0}.chip-row.compact{margin-top:10px}.chip{display:inline-flex;align-items:center;gap:6px;padding:8px 12px;border-radius:999px;background:#ffffff14;font-size:.84rem}.action-row{align-items:center;flex-wrap:wrap}.action-row-wrap{flex-wrap:wrap}.content-panel{margin-top:16px;padding:18px;border-radius:20px;background:#ffffff0a;border:1px solid rgba(255,255,255,.06)}.content-panel h4{margin-bottom:12px;font-size:1rem;color:#f3e2bb}.content-panel pre,.content-panel p{white-space:pre-wrap;margin:0;line-height:1.78}.article-output-panel pre{max-height:360px;overflow-y:auto;padding-right:4px}.submission-form,.form-grid{display:grid;gap:12px}.submission-form input,.submission-form textarea,.submission-form select,.form-grid input,.form-grid textarea{width:100%;border:1px solid rgba(255,255,255,.12);background:#040a1299;color:#eff5ff;border-radius:16px;padding:14px 16px}.submission-form textarea,.form-grid textarea{min-height:120px;resize:vertical}.form-block{display:grid;gap:8px}.form-block label,.form-label{color:#eef4ffe0;font-size:.95rem;font-weight:600}.form-block-full{grid-column:1 / -1}.checkbox-column{display:grid;gap:10px}.checkbox-item{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;border-radius:16px;background:#ffffff0a;border:1px solid rgba(255,255,255,.08)}.checkbox-item-main{display:flex;align-items:center;gap:12px;min-width:0;flex:1;cursor:pointer}.checkbox-item input{width:18px;height:18px;accent-color:#79dccd}.checkbox-item-main span{color:#eef4ffe0}.checkbox-item-custom{border-color:#ff857538;background:#922c3429}.checkbox-item-remove{border:0;background:transparent;color:#ffb1a4;font-size:.88rem;font-weight:700;cursor:pointer;padding:0;transition:color .2s ease,transform .2s ease}.checkbox-item-remove:hover{color:#ffd0c8;transform:translate(1px)}.form-helper{display:block;color:#eef4ff9e;font-size:.9rem;line-height:1.6}.custom-point-entry{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px;margin-top:4px}.custom-point-entry .btn-secondary{min-width:134px}.custom-point-list{display:flex;flex-wrap:wrap;gap:10px}.custom-point-chip{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(121,220,205,.2);border-radius:999px;background:#79dccd14;color:#dff4ee;padding:8px 12px;cursor:pointer}.custom-point-chip strong{font-size:1rem;line-height:1}.feedback-banner{border-radius:18px;padding:14px 18px;margin-bottom:20px}.feedback-banner.muted{background:#ffffff0f;margin-top:20px}.modal-mask{position:fixed;top:0;right:0;bottom:0;left:0;background:#050810d1;display:grid;place-items:center;padding:24px;z-index:30}.modal-mask-elevated{z-index:40}.modal-card{width:min(640px,100%);border-radius:24px;padding:24px;max-height:min(88vh,920px);overflow-y:auto}.modal-card-scroll-shell{display:flex;flex-direction:column;padding:0;overflow:hidden}.modal-card-sm{width:min(560px,100%)}.modal-card-lg{width:min(860px,100%)}.modal-header{align-items:flex-start;margin-bottom:18px}.modal-card-scroll-shell .modal-header{margin-bottom:0;padding:24px 24px 18px;flex-shrink:0;border-bottom:1px solid rgba(255,255,255,.08)}.modal-copy{color:#eef4ffc7;line-height:1.74;margin-bottom:18px}.modal-body{min-height:0}.modal-body-scroll{flex:1;overflow-y:auto;padding:0 24px 24px}.modal-close-btn{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border:1px solid rgba(255,255,255,.12);border-radius:999px;background:#ffffff0d;color:#eef4ff;cursor:pointer;flex-shrink:0}.modal-close-btn:hover{background:#ffffff17;border-color:#79dccd38}.modal-actions{justify-content:flex-end;margin-top:20px}.modal-footer{flex-shrink:0;margin-top:0;padding:18px 24px 24px;border-top:1px solid rgba(255,255,255,.08)}.summary-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px;margin-bottom:24px}.summary-card span{color:#eef4ffb8}.history-panel{min-height:200px}.history-item{display:flex;flex-direction:column;gap:4px;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.08)}.history-item:last-child{border-bottom:none}.history-item-row{flex-direction:row;align-items:center}.history-item-main{display:grid;gap:4px}.history-meta{color:#eef4ff85;font-size:.84rem}.my-profile-hero{align-items:stretch}.my-profile-main{display:flex;align-items:flex-start;gap:18px;min-width:0}.my-profile-avatar{display:inline-flex;align-items:center;justify-content:center;width:72px;height:72px;border-radius:24px;background:linear-gradient(135deg,#ffe0a0,#f4b02f);color:#7a1626;font-family:"Noto Serif SC","Source Han Serif SC",STSong,serif;font-size:2rem;font-weight:800;box-shadow:0 18px 32px #f4b02f33;flex-shrink:0}.my-profile-copy{display:grid;gap:10px;align-content:start;min-width:0}.my-profile-copy h1{font-size:clamp(2rem,3vw,2.8rem);line-height:1.12}.my-profile-copy p{margin:0;max-width:52ch;color:#fff0e1c7}.my-profile-tags{margin-top:4px}.my-profile-side{display:grid;gap:14px}.my-profile-side .hero-metric-card{min-height:0}.my-profile-side .metric-copy{max-width:none}.my-summary-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.my-records-panel{min-height:0}.my-records-header{align-items:flex-end}.my-records-count{color:#ffe8c8b8;font-size:.9rem;white-space:nowrap}.my-record-tabs{display:flex;flex-wrap:wrap;gap:12px;margin:4px 0 18px}.my-record-tab{display:inline-flex;align-items:center;gap:10px;min-height:44px;padding:0 16px;border-radius:999px;border:1px solid rgba(255,226,190,.16);background:#ffffff0a;color:#fff1e5c2;cursor:pointer;transition:transform .2s ease,background .2s ease,border-color .2s ease,color .2s ease}.my-record-tab strong{font-size:.86rem}.my-record-tab:hover{transform:translateY(-1px);border-color:#ffd88f47;background:#fff4e414}.my-record-tab.is-active{background:linear-gradient(135deg,#ffdf9d,#f4b02f);color:#7a1626;border-color:transparent;box-shadow:0 14px 28px #f4b02f38}.records-table-wrap{overflow-x:auto}.records-table{width:100%;min-width:720px;border-collapse:collapse}.records-table th,.records-table td{padding:14px 12px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left;vertical-align:middle}.records-table th{color:#ffe8c8b8;font-size:.82rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase}.records-table td{color:#fff3eae0}.records-table tbody tr:hover{background:#ffffff08}.record-cell-title{display:grid;gap:4px;min-width:220px}.record-cell-title strong{color:#fff7ef;font-size:.98rem}.record-status,.record-type-tag{display:inline-flex;align-items:center;justify-content:center;min-height:32px;padding:0 12px;border-radius:999px;font-size:.84rem;font-weight:700;white-space:nowrap}.record-status.status-pending{background:#ffd88f29;color:#ffe2a1}.record-status.status-approved{background:#41ac4f1a;color:#239b13}.record-status.status-rejected{background:#ff919124;color:#ffbeb9}.record-type-tag{background:#ffffff14;color:#fff1db;border:1px solid rgba(255,226,190,.14)}.record-empty{padding:8px 0 4px}.table-action-btn{min-height:38px;padding:8px 14px;white-space:nowrap}.my-overview-hero{position:relative;display:grid;grid-template-columns:minmax(0,1.55fr) minmax(320px,.95fr);gap:24px;padding:32px;border-radius:32px;background:radial-gradient(circle at 82% 18%,rgba(255,255,255,.12),transparent 24%),linear-gradient(135deg,#f43a29,#e82f25 48%,#d1191d);border:1px solid rgba(226,74,52,.24);box-shadow:0 30px 68px #be2b2138}.my-overview-copy{display:grid;gap:12px;align-content:start}.my-overview-hero .section-kicker{color:#ffe1ad}.my-overview-copy h1{margin:0;color:#fffaf7;font-family:"Noto Serif SC","Source Han Serif SC",STSong,serif;font-size:clamp(2rem,3vw,2.8rem);line-height:1.12}.my-overview-copy p{margin:0;max-width:54ch;color:#fff5efdb;line-height:1.74}.my-overview-hero .hero-tag-row{margin-top:4px}.my-overview-hero .chip{background:#ffffff24;color:#fff7ef;border:1px solid rgba(255,255,255,.14)}.my-overview-side{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;align-content:start}.my-overview-side .metric-card.subject-hero-metric{display:grid;min-height:0;border-radius:22px;padding:18px;gap:8px;background:#ffffff1f;border-color:#ffffff24;box-shadow:none}.my-overview-side .metric-card.subject-hero-metric .metric-label,.my-overview-side .metric-card.subject-hero-metric strong{color:#fff8f4}.my-overview-side .metric-card.subject-hero-metric strong{font-size:clamp(1.5rem,2vw,2rem);line-height:1.08}.my-overview-summary{grid-column:1 / -1;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.my-overview-stat{display:grid;gap:8px;padding:22px;border-radius:24px;background:#ffffff1f;border:1px solid rgba(255,255,255,.14)}.my-overview-stat span{color:#fff5efc2;font-size:.92rem}.my-overview-stat strong{color:#fffaf7;font-size:2.25rem;line-height:1}.my-records-panel{border:1px solid rgba(214,110,89,.1);border-radius:30px;padding:26px;background:linear-gradient(180deg,#fff,#fff9f4);box-shadow:0 18px 40px #6b322b14}.my-records-panel-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin-bottom:18px}.my-records-title{display:grid;gap:12px}.my-records-title .section-kicker{display:inline-flex;align-items:center;min-height:38px;width:fit-content;padding:0 16px;border-radius:999px;border:1px solid rgba(214,110,89,.14);background:linear-gradient(180deg,#fff7f1,#fff0e7);color:#ce4d3d;font-size:.95rem;font-weight:700;letter-spacing:.02em}.my-records-title h2{margin:0;color:#4d2124;font-family:"Noto Serif SC","Source Han Serif SC",STSong,serif;font-size:clamp(1.35rem,1.7vw,1.85rem);line-height:1.22}.my-records-title p{margin:0;max-width:58ch;color:#86645d;line-height:1.72}.my-records-count-box{display:inline-grid;justify-items:center;align-content:center;min-width:118px;min-height:108px;padding:16px 18px;border-radius:24px;background:linear-gradient(135deg,#ff8e6e,#cc2d44);color:#fff8f4;box-shadow:0 18px 36px #bc384a38}.my-records-count-box span,.my-records-count-box strong em{font-style:normal;color:#fff6f1d6}.my-records-count-box strong em{font-size:.9rem}.my-records-count-box strong{font-size:2.1rem;line-height:1}.my-record-tabs{display:flex;flex-wrap:wrap;gap:14px;margin:0 0 18px}.my-record-tab{display:inline-flex;align-items:center;gap:10px;min-height:48px;padding:0 18px;border-radius:999px;border:1px solid rgba(214,110,89,.12);background:#fff1e8;color:#bf6a58;box-shadow:none;cursor:pointer;transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease,border-color .2s ease}.my-record-tab strong{font-size:.9rem}.my-record-tab:hover{transform:translateY(-1px);background:#fff7f2;color:#bf4a39;border-color:#d66e592e}.my-record-tab.is-active{background:linear-gradient(135deg,#ff7d66,#ef473a 38%,#cf2f34);color:#fffaf7;border-color:transparent;box-shadow:0 14px 30px #cf2f3433}.my-record-content{padding:16px 18px;border-radius:24px;border:1px solid rgba(214,110,89,.1);background:linear-gradient(180deg,#fffdfb,#fff7f1);box-shadow:inset 0 0 0 1px #fffcf980}.my-records-panel .records-table{min-width:760px}.my-records-panel .records-table th,.my-records-panel .records-table td{border-bottom:1px solid rgba(214,110,89,.1)}.my-records-panel .records-table th{color:#a07b72;font-size:.84rem;letter-spacing:.04em}.my-records-panel .records-table td{color:#6b4740}.my-records-panel .records-table tbody tr:hover{background:linear-gradient(180deg,#fffdfa,#fff4ee)}.my-records-panel .record-cell-title strong{color:#4d2124}.my-records-panel .history-meta{color:#8d6a62}.my-records-panel .record-type-tag{background:#fff3eb;color:#c54d3b;border-color:#d66e5924}.my-records-panel .record-empty,.my-records-panel .empty-text{color:#8d6a62}.my-records-panel .table-action-btn{min-width:96px;background:#fff4ed;color:#c44735;border:1px solid rgba(214,110,89,.14);box-shadow:none}.my-records-panel .table-action-btn:hover{background:#fff;color:#c44735;border-color:#d66e5933}.submission-card-compact{padding:20px 0 0;border:none;box-shadow:none;background:transparent}.submission-card-compact:first-of-type{padding-top:0}.submission-card-compact h3{font-size:1.2rem}.side-column-stack{display:grid;gap:20px;align-content:start}.personalized-form-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.article-detail{display:grid;gap:18px}.detail-field-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.detail-field{display:grid;gap:6px;padding:14px;border-radius:16px;background:#ffffff0a}.detail-field strong{font-size:.9rem;color:#f3e2bb}.detail-field span{color:#eef4ffc7;line-height:1.6}.site-footer{padding:24px 0 40px;color:#eef4ff99}.site-footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}.page-state{padding:80px 0;text-align:center}.page-state.error{color:#ff9d9d}.empty-text{color:#eef4ffa6}.festive-hero{position:relative;overflow:hidden}.festive-hero:before,.festive-subject-hero:before{content:"";position:absolute;inset:auto -80px -60px auto;width:240px;height:240px;border-radius:50%;background:radial-gradient(circle,rgba(255,216,143,.35) 0,rgba(255,216,143,.08) 42%,transparent 68%);pointer-events:none}.festive-copy{position:relative;z-index:1}.hero-side-stack,.hero-side-grid,.subject-rankings-list,.activity-feed-list,.subject-battle-columns{display:grid;gap:18px}.subject-rankings-list{gap:30px}.hero-side-grid{grid-template-columns:1fr}.countdown-card,.subject-duel-row,.activity-feed-item{border-radius:28px;border:1px solid rgba(255,223,174,.14);background:linear-gradient(180deg,#761023f5,#580a18f5),radial-gradient(circle at top left,rgba(255,216,143,.12),transparent 42%);box-shadow:0 22px 52px #34050e38}.countdown-card{padding:22px}.countdown-card-head,.subject-duel-header,.participant-marquee-head,.duel-column-head,.knowledge-panel-head,.activity-feed-item,.activity-feed-side{display:flex;align-items:center;justify-content:space-between;gap:12px}.countdown-card-head strong,.subject-duel-header h3,.activity-feed-main strong{font-family:"Source Han Serif SC",STZhongsong,"Noto Serif SC",serif}.countdown-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:18px}.countdown-item{padding:16px 12px;border-radius:20px;text-align:center;background:#fff8ec14;border:1px solid rgba(255,223,174,.16);display:flex;align-items:center;gap:5px}.countdown-item strong{display:block;font-size:1.75rem;color:#ffe2aa}.countdown-item span{color:#fff0e1b8;font-size:.82rem}.metric-value-row-left{justify-content:flex-start}.subject-shortcuts,.participant-marquee-track,.subject-duel-columns,.selected-chip-row,.knowledge-search-results{display:flex;flex-wrap:wrap;gap:10px}.subject-shortcut-pill,.participant-chip{border-radius:999px;border:1px solid rgba(255,223,174,.18);background:#fff8ec14;padding:10px 14px}.subject-shortcut-pill{display:inline-flex;flex-direction:column;gap:2px}.subject-shortcut-pill span,.participant-chip strong{font-weight:700;color:#ffe1a0}.subject-shortcut-pill small,.participant-chip em{font-style:normal;color:#fff0e1b8;font-size:.82rem}.participant-marquee{display:grid;gap:12px;margin-top:18px}.subject-duel-row{padding:24px;position:relative;overflow:hidden}.subject-duel-row:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background:radial-gradient(circle at 10% 0%,rgba(255,216,143,.18),transparent 28%),radial-gradient(circle at 92% 10%,rgba(255,120,88,.14),transparent 24%);pointer-events:none}.subject-duel-header{position:relative;z-index:1;margin-bottom:18px}.subject-duel-header p,.activity-feed-main p,.history-panel-copy{color:#fff0e1c7}.subject-duel-columns{position:relative;z-index:1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.duel-column{padding:18px;border-radius:22px;background:#fff8ec0f;border:1px solid rgba(255,223,174,.12)}.duel-column-note,.selection-counter{color:#fff0e1ad;font-size:.84rem}.compact-ranking-list{display:grid;gap:10px;margin-top:14px}.compact-ranking-card{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:12px;align-items:center;padding:14px 16px;border-radius:18px;background:#ffffff0d;border:1px solid rgba(255,223,174,.12)}.compact-rank-no{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border-radius:50%;background:linear-gradient(135deg,#ffdf9d,#f4b02f);color:#7a1626;font-weight:800}.compact-ranking-main{display:grid;gap:4px}.compact-ranking-main span,.compact-vote-count,.activity-feed-side em,.activity-feed-side span{color:#fff0e1b8;font-size:.85rem}.activity-feed-item{padding:18px 20px}.activity-feed-icon{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:16px;background:#ffdfae24;color:#ffe1a0;flex-shrink:0}.activity-feed-main{display:grid;gap:6px;flex:1}.activity-feed-main span{color:#ffe1a0}.activity-feed-side{flex-direction:column;align-items:flex-end}.subject-battle-columns{grid-template-columns:repeat(2,minmax(0,1fr))}.battle-title-with-action{flex-direction:row;justify-content:space-between;align-items:flex-end}.battle-card,.submission-modal-card{border-color:#ffdfae24}.battle-card-community{background:linear-gradient(180deg,#821627f2,#580a18f5),radial-gradient(circle at top left,rgba(255,140,101,.12),transparent 42%)}.subject-hero-side-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.subject-hero-cta{grid-column:span 2}.knowledge-panel-head,.search-input-wrap{display:flex;align-items:center;gap:12px}.suggestion-group{display:grid;gap:10px;padding:14px 0;border-top:1px solid rgba(255,223,174,.1)}.suggestion-group:first-of-type{border-top:none}.suggestion-title{display:inline-flex;align-items:center;gap:8px;color:#ffe1a0;font-size:.92rem;font-weight:700}.search-input-wrap{padding:0 14px;border-radius:16px;background:#ffffff0d;border:1px solid rgba(255,223,174,.14)}.search-input-wrap input{border:none;background:transparent;padding-left:0}.search-input-wrap input:focus{box-shadow:none}.knowledge-search-option,.custom-point-chip{display:inline-flex;align-items:center;gap:8px;border-radius:999px;border:1px solid rgba(255,223,174,.16);background:#fff8ec14;color:#fff7ef;padding:10px 14px;cursor:pointer}.custom-point-chip.active{background:#f4b02f2e;color:#ffe1a0;border-color:#ffdfae4d}.knowledge-search-option:hover,.custom-point-chip:hover{transform:translateY(-1px)}.site-footer{color:#fff0e1ad}.feedback-banner.muted{background:#fff8ec14;border-color:#ffdfae1f}.history-panel-copy{margin-bottom:10px}@media(max-width:1180px){.subject-grid,.feature-strip,.summary-grid,.subject-battle-columns{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:960px){.hero-panel,.subject-hero,.grid-section,.history-grid,.my-page-grid{grid-template-columns:1fr}.site-header-inner{align-items:flex-start;flex-direction:column}.site-nav{width:100%;justify-content:space-between}.history-panel-wide{grid-column:auto}.personalized-form-grid,.detail-field-list,.subject-grid,.feature-strip,.summary-grid,.subject-duel-columns,.subject-battle-columns{grid-template-columns:1fr}.my-summary-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.my-overview-hero{grid-template-columns:1fr}.my-overview-side,.my-overview-summary{grid-template-columns:repeat(2,minmax(0,1fr))}.my-records-panel-head{flex-direction:column}}@media(max-width:720px){.site-header-inner,.site-footer-inner,.page-shell{width:min(100vw - 24px,1180px)}.hero-panel,.subject-hero,.prediction-card,.submission-form,.submission-card,.history-panel,.my-records-panel,.modal-card,.feature-card,.summary-card{padding:20px}.modal-card-scroll-shell{padding:0}.modal-card-scroll-shell .modal-header{padding:20px 20px 16px}.modal-card-scroll-shell .modal-body-scroll{padding:0 20px 20px}.modal-card-scroll-shell .modal-footer{padding:16px 20px 20px}.hero-copy h1{font-size:clamp(1.9rem,8vw,2.6rem)}.btn-primary,.btn-secondary,.btn-personalized,.nav-link,.ghost-link{width:100%}.table-action-btn{width:auto}.site-actions,.hero-actions,.action-row{width:100%}.my-overview-hero{padding:22px;border-radius:28px}.my-overview-copy h1{font-size:clamp(1.8rem,7vw,2.35rem)}.my-overview-side,.my-overview-summary,.my-summary-grid{grid-template-columns:1fr}.my-record-tab{flex:1 1 100%;justify-content:space-between}.my-records-count-box{width:100%;min-height:88px}.my-record-content{padding:14px}.history-item-row,.panel-header,.subject-card-head,.subject-card-footer,.hero-metric-card{align-items:flex-start;flex-direction:column}.subject-page .subject-hero{padding:18px;gap:16px}.subject-hero-copy h1{font-size:clamp(1.7rem,7vw,2.3rem);max-width:none}.subject-page .subject-hero-side{grid-template-columns:repeat(2,minmax(0,1fr))}.metric-card.subject-hero-metric strong{font-size:1.6rem}.countdown-grid,.subject-hero-side-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.subject-hero-cta,.participant-chip,.subject-shortcut-pill,.knowledge-search-option,.custom-point-chip{width:100%}}@media(max-width:560px){.subject-page .subject-hero-side,.subject-hero-side-grid,.countdown-grid{grid-template-columns:1fr}}body{background:radial-gradient(circle at 12% 0%,rgba(255,223,204,.72),transparent 20%),radial-gradient(circle at 92% 4%,rgba(255,176,126,.28),transparent 22%),linear-gradient(180deg,#fff6f1,#fffdfb 34%,#fff8f5);color:#4f2a27}body:before,body:after{opacity:.22}.site-header{background:#ffffffe0;border-bottom:1px solid rgba(214,110,89,.12);box-shadow:0 10px 30px #682d2614}.site-footer{color:#714e47c2}.brand strong,.section-title h1,.section-title h2,.prediction-card h3,.feature-card h3,.history-panel h2,.modal-card h3{color:#4d2124}.brand em{color:#805c56d1}.nav-link,.ghost-link{color:#7d3936;border-color:#d66e5924;background:#ffffffd1}.nav-link:hover,.ghost-link:hover{border-color:#cc4c363d;background:#fff6f1}.wallet-pill{background:#ffd1703d;color:#a25b10}.user-pill{background:#ffffffdb;color:#7b433a;border:1px solid rgba(214,110,89,.14)}.btn-primary{background:linear-gradient(135deg,#ffd451,#ffb71d);color:#7b2417;box-shadow:0 14px 30px #ffb71d3d}.btn-primary:hover{color:#7b2417;box-shadow:0 18px 34px #ffb71d47}.btn-secondary{background:#ffffffeb;color:#8b3f35;border-color:#d66e5933;box-shadow:0 12px 26px #6c312a14}.btn-secondary:hover{background:#fff7f3;color:#8b3f35;border-color:#cc4c3647;box-shadow:0 16px 28px #6c312a1a}.btn-personalized{background:linear-gradient(135deg,#ff8b72,#d93437);box-shadow:0 18px 36px #d238363d}.pill{background:#fff4eb;color:#9a5648}.pill.official{background:#fff0dc;color:#bf5630}.pill.community{background:#fff0ed;color:#c94e42}.pill.heat{background:#fff1cf;color:#ae6310}.pill.votes{background:#fff6ee;color:#8a6153}.chip{background:#fff4ed;color:#8e594d;border:1px solid rgba(214,110,89,.12)}.section-kicker,.section-title span{color:#c84b34}.hero-copy p,.subject-hero p,.prediction-card p,.feature-card p,.submission-card p,.history-item span,.history-panel-copy,.metric-copy,.metric-label,.modal-copy{color:#84645c}.empty-text{color:#9a776f}.page-state.error{color:#c53f39}.hero-panel,.prediction-card,.submission-form,.submission-card,.feature-card,.metric-card,.summary-card,.history-panel,.modal-card,.feedback-banner,.subject-duel-row,.activity-feed-item,.countdown-card{background:linear-gradient(180deg,#fff,#fff8f3);border:1px solid rgba(214,110,89,.12);box-shadow:0 22px 52px #6930291a}.landing-hero-panel{display:block;position:relative;overflow:hidden;padding:42px 42px 212px;background:radial-gradient(circle at 76% 22%,rgba(255,255,255,.12),transparent 24%),linear-gradient(135deg,#f93f2a,#ec2d21 45%,#d7181c);border-color:#e24a3442;box-shadow:0 34px 76px #be2b213d}.landing-hero-panel:after{display:none}.landing-hero-main{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.45fr) minmax(280px,.92fr);gap:46px;align-items:start}.landing-hero-panel .festive-copy,.landing-hero-panel .hero-side-stack{position:relative;z-index:1}.landing-hero-panel .festive-copy{display:grid;align-content:start;gap:18px;padding-top:8px;max-width:760px}.landing-hero-panel .section-kicker{color:#ffe1ad}.landing-hero-panel .hero-copy h1{color:#fffaf7;font-size:clamp(1.6rem,4.8vw,3.1rem);letter-spacing:-.03em;line-height:1.12;margin:0}.landing-hero-panel .hero-copy p{color:#fff5efe0;margin:0}.hero-actions-left{margin-top:8px}.hero-button{min-width:164px}.hero-button-outline{background:transparent;color:#fff9f6;border-color:#ffffff47;box-shadow:none}.hero-button-outline:hover{background:#ffffff1f;color:#fff9f6;box-shadow:none}.landing-hero-panel .hero-tag-row{margin-top:6px}.landing-hero-panel .chip{background:#ffffff24;color:#fff7ef;border-color:#ffffff24}.hero-status-inline{display:flex;align-items:center;gap:12px;flex-wrap:wrap;width:fit-content;margin-top:6px;padding:14px 20px;border-radius:999px;background:#7f080a33;color:#fff3ea}.hero-action-feedback{display:inline-flex;align-items:center;width:fit-content;margin-top:12px;padding:8px 12px;border-radius:999px;background:#ffffff24;color:#fff8f4;font-size:.84rem}.share-result-modal{width:min(560px,100%)}.share-result-modal-head{display:flex;align-items:flex-start;gap:14px}.share-result-modal-badge{display:inline-flex;align-items:center;justify-content:center;width:52px;height:52px;border-radius:18px;background:linear-gradient(135deg,#d4503f,#b8222d);color:#fff8f1;box-shadow:0 16px 28px #aa272729;flex-shrink:0}.share-result-modal-badge.is-warning{background:linear-gradient(135deg,#e29b41,#cb5c27)}.share-result-modal .modal-copy{margin-bottom:0}.share-result-modal-link{width:100%;min-height:92px;margin-top:16px;padding:14px 16px;border-radius:18px;border:1px solid rgba(214,110,89,.18);background:#fffaf7;color:#6f4d46;font:inherit;line-height:1.7;resize:none}.share-result-modal-link:focus{outline:2px solid rgba(212,80,63,.22);outline-offset:2px}.share-result-modal .modal-actions{margin-top:18px}.hero-inline-link{display:inline-flex;align-items:center;justify-content:center;border:none;background:transparent;color:#ffe9bf;cursor:pointer;font-weight:700;padding:0}.landing-hero-panel .countdown-card,.landing-hero-panel .hero-side-participants{background:#ffffff1f;border:1px solid rgba(255,255,255,.16);box-shadow:0 18px 38px #780a0d29}.landing-hero-panel .metric-icon{background:#ffffff24;color:#ffe1ad;border-color:#ffffff29}.landing-hero-panel .countdown-card-head strong,.landing-hero-panel .participant-marquee-head strong{color:#fff9f5}.landing-hero-panel .metric-label{color:#fff3eab8}.landing-hero-panel .countdown-item{background:#fffbf7f5;border:none}.landing-hero-panel .countdown-item strong{color:#cb3523}.landing-hero-panel .countdown-item span{color:#b76d60}.hero-side-participants{display:grid;gap:18px;padding:24px;border-radius:26px}.participant-avatar-group{display:flex;align-items:center;gap:10px}.participant-avatar{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,#ffe29c,#ffbf44);color:#7e2a1f;font-weight:800;box-shadow:0 8px 18px #7c17152e}.landing-hero-panel .participant-chip{border-color:#ffffff24;background:#ffffff1f}.landing-hero-panel .participant-chip strong{color:#fff7ef}.landing-hero-panel .participant-chip em{color:#fff3ead1}.participant-summary-tag{color:#fff3eac2;font-size:.84rem}.hero-shortcut-strip{position:absolute;left:42px;right:42px;bottom:30px;z-index:2;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.subject-shortcut-card{position:relative;display:grid;gap:8px;padding:18px 20px;border-radius:22px;background:linear-gradient(180deg,#fff,#fff8f3);border:1px solid rgba(214,110,89,.12);box-shadow:0 20px 42px #6a312a1f;text-decoration:none!important;color:#5a2b27;overflow:hidden;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}.subject-shortcut-card:after{content:"";position:absolute;inset:auto -40px -44px auto;width:120px;height:120px;border-radius:50%;background:radial-gradient(circle,var(--subject-accent) 0,transparent 70%);opacity:.14;pointer-events:none;transition:opacity .22s ease,transform .22s ease}.subject-shortcut-card small{letter-spacing:.16em;text-transform:uppercase;color:#c85f46;font-weight:700}.subject-shortcut-card strong{font-family:"Noto Serif SC","Source Han Serif SC",STSong,serif;color:#4f2024;font-size:1.12rem}.subject-shortcut-card span{color:#8b685f;font-size:.92rem;line-height:1.56}.subject-shortcut-card em{display:inline-flex;align-items:center;gap:6px;font-style:normal;color:#bf402f;font-weight:700}.subject-shortcut-card-active{background:linear-gradient(135deg,#ffd952,#ffbc28);border-color:#ffbc2866;box-shadow:0 22px 46px #ffbc2833}.subject-shortcut-card-active small,.subject-shortcut-card-active strong,.subject-shortcut-card-active span,.subject-shortcut-card-active em{color:#6f2d18}.hero-wave{position:absolute;left:0;right:0;bottom:-1px;height:56px;background:#fff9f6;clip-path:ellipse(68% 100% at 50% 100%)}.subject-rankings-section{margin-top:56px}.landing-page .subject-rankings-section>.section-title,.landing-page .activity-feed-section>.section-title{margin-bottom:28px}.landing-page .subject-rankings-section>.section-title span,.landing-page .activity-feed-section>.section-title span{display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 16px;border-radius:14px;border:1px solid rgba(214,110,89,.22);background:#fff7efe6;color:#d04b35;font-size:1rem;font-weight:800;letter-spacing:.08em}.landing-page .subject-rankings-section>.section-title h2,.landing-page .activity-feed-section>.section-title h2{max-width:980px;margin:0 auto;font-size:clamp(1.62rem,2.15vw,2.28rem);line-height:1.34}.landing-page .activity-feed-section>.section-title p{max-width:860px;margin:0 auto;color:#8a665e;font-size:1rem;line-height:1.72}.landing-page .activity-feed-section{display:grid;gap:16px}.landing-page .activity-feed-board{padding:16px;border-radius:24px;background:#fffaf7;border:1px solid rgba(214,110,89,.1);box-shadow:0 20px 42px #6a312a14}.landing-page .activity-feed-window{position:relative;overflow:hidden;height:var(--activity-feed-window-height);border-radius:20px}.landing-page .activity-feed-track{display:grid;gap:var(--activity-feed-row-gap)}.landing-page .activity-feed-track.is-animated{animation:activity-feed-scroll var(--activity-feed-duration) linear infinite;will-change:transform}.landing-page .activity-feed-window:hover .activity-feed-track.is-animated{animation-play-state:paused}.landing-page .section-title h2,.landing-page .subject-duel-header h3,.landing-page .compact-ranking-main strong,.landing-page .activity-feed-main strong{color:#4d2124}.landing-page .subject-duel-row,.landing-page .activity-feed-item{background:linear-gradient(180deg,#fff,#fff9f4)}.landing-page .activity-feed-item{min-height:var(--activity-feed-row-height);padding:0 18px;display:grid;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;gap:14px;border-radius:18px;border:1px solid rgba(214,110,89,.1);background:#fff;box-shadow:inset 0 0 0 1px #fffcf980;transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}.landing-page .subject-duel-row:after{background:radial-gradient(circle at 0 0,rgba(235,91,67,.1),transparent 20%),radial-gradient(circle at 100% 0,rgba(255,206,87,.18),transparent 22%)}.landing-page .subject-duel-header p,.landing-page .activity-feed-main p{color:#86645d}.landing-page .subject-duel-header{position:relative;display:flex;align-items:center;justify-content:space-between;gap:28px;min-height:0;margin-bottom:24px;padding-right:0;text-align:left}.landing-page .subject-duel-header-copy{display:flex;align-items:center;gap:14px;min-width:0;margin:0;flex:1}.landing-page .subject-duel-header-copy-main{display:flex;align-items:baseline;gap:16px;min-width:0;flex:1}.landing-page .subject-duel-header-copy .section-kicker{display:inline-flex;align-items:center;justify-content:center;min-width:64px;min-height:34px;padding:0 14px;border-radius:12px;border:1px solid rgba(197,56,43,.18);background:linear-gradient(135deg,#e04e3f,#bb2f2b);color:#fff9f6;font-size:.92rem;font-weight:800;flex-shrink:0;box-shadow:0 10px 22px #bb2f2b29}.landing-page .subject-duel-header h3{margin:0;font-size:clamp(1.34rem,1.5vw,1.62rem);line-height:1.16;flex-shrink:0}.landing-page .subject-duel-header p{margin:0;text-align:left;min-width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;line-height:1.5;font-size:.96rem}.landing-page .subject-duel-header-action{position:static;min-width:152px;flex-shrink:0}.landing-page .duel-column{background:#fffaf7;border-color:#d66e591a}.landing-page .duel-column-head{margin-bottom:16px}.landing-page .duel-column-head .pill{padding:11px 16px;border-radius:16px;font-size:1rem;font-weight:800;letter-spacing:.01em;border:1px solid transparent;box-shadow:0 10px 24px #7c372a14}.landing-page .duel-column-official .duel-column-head .pill.official{background:linear-gradient(135deg,#fff0d8,#ffe0a6);border-color:#e7a6424d;color:#c35b20}.landing-page .duel-column-community .duel-column-head .pill.community{background:linear-gradient(135deg,#fff0ee,#ffd8d0);border-color:#e2745e3d;color:#d14d3f}.landing-page .duel-column-note,.landing-page .compact-ranking-main span,.landing-page .compact-vote-count,.landing-page .activity-feed-side span,.landing-page .activity-feed-side em{color:#a07b72}.landing-page .duel-column-note{font-size:.92rem;font-weight:800;letter-spacing:.08em}.landing-page .compact-ranking-card{background:#fff;border-color:#d66e591a;box-shadow:inset 0 0 0 1px #fffcf980;transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}.landing-page .activity-feed-icon{width:36px;height:36px;border-radius:12px;background:#fff3e8;color:#cf4b35;transition:background .2s ease,box-shadow .2s ease,color .2s ease}.landing-page .activity-feed-main{min-width:0}.landing-page .activity-feed-main p{margin:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;line-height:1.42;font-size:.95rem}.landing-page .activity-feed-main strong{font-size:1rem;margin-right:10px}.landing-page .activity-feed-main p span{margin-right:6px;color:#88655d}.landing-page .activity-feed-main em{font-style:normal;color:#bf402f}.landing-page .activity-feed-side{display:inline-flex;flex-direction:row;align-items:center;gap:8px;white-space:nowrap;flex-shrink:0}.landing-page .activity-feed-side span{display:inline-flex;align-items:center;min-height:28px;padding:0 10px;border-radius:999px;background:#fff6ef;color:#bb6048;font-size:.76rem;font-weight:700}.landing-page .activity-feed-side span:after{display:none}.landing-page .activity-feed-side em{font-size:.78rem}@media(hover:hover)and (pointer:fine){.subject-shortcut-card:hover{transform:translateY(-8px);border-color:#d66e593d;box-shadow:0 28px 52px #6a312a2e}.subject-shortcut-card:hover:after{opacity:.22;transform:scale(1.08)}.subject-shortcut-card-active:hover{border-color:#ffbc2885;box-shadow:0 30px 56px #ffbc2847}.landing-page .compact-ranking-card:hover{border-color:#d66e5933;background:linear-gradient(180deg,#fffdfa,#fff4eb);box-shadow:inset 0 0 0 1px #fff8f1c7,0 10px 24px #75382f14}.landing-page .activity-feed-item:hover{border-color:#d66e592e;background:linear-gradient(180deg,#fffdfa,#fff4ee);box-shadow:inset 0 0 0 1px #fff8f1d6,0 10px 24px #75382f0f}.landing-page .activity-feed-item:hover .activity-feed-icon{background:#ffe8da;color:#c53f31;box-shadow:0 8px 18px #c53f311a}}@keyframes activity-feed-scroll{0%{transform:translateY(0)}to{transform:translateY(calc(-1 * var(--activity-feed-scroll-distance)))}}.subject-page .subject-hero{background:radial-gradient(circle at 80% 18%,rgba(255,255,255,.12),transparent 24%),linear-gradient(135deg,#f43a29,#e82f25 48%,#d1191d);border-color:#e24a343d;box-shadow:0 30px 68px #be2b2138}.subject-page .subject-hero .section-kicker{color:#ffe1ad}.subject-page .subject-hero h1{color:#fffaf7}.subject-page .subject-hero p{color:#fff5efdb}.subject-page .subject-hero .chip{background:#ffffff24;color:#fff7ef;border-color:#ffffff24}.subject-page .metric-card.subject-hero-metric{background:#ffffff1f;border-color:#ffffff24;box-shadow:none}.subject-page .metric-card.subject-hero-metric .metric-label,.subject-page .metric-card.subject-hero-metric strong{color:#fff8f4}.subject-page .subject-hero-cta{background:#fffffff0;color:#ce3528;box-shadow:0 16px 34px #7b0f1029}.subject-page .subject-hero-cta:hover{color:#ce3528;background:#fff}.subject-page .battle-column,.subject-page .history-panel,.subject-page .prediction-card,.subject-page .feedback-banner{background:linear-gradient(180deg,#fff,#fff9f4)}.subject-page .battle-column{position:relative;border:1px solid rgba(214,110,89,.1);border-radius:26px;padding:22px;box-shadow:0 18px 40px #6b322b14}.subject-page .battle-title{position:relative;align-items:flex-start;min-height:80px;margin-bottom:14px}.subject-page .battle-title-copy{display:grid;gap:12px;width:100%}.subject-page .battle-title-copy span{display:inline-flex;align-items:center;min-height:38px;padding:0 16px;width:fit-content;border-radius:999px;border:1px solid rgba(214,110,89,.14);background:linear-gradient(180deg,#fff7f1,#fff0e7);color:#ce4d3d;font-size:.95rem;font-weight:700;letter-spacing:.02em}.subject-page .battle-title h2{margin:0;line-height:1.28;font-size:1.3rem}.subject-page .battle-title-action{position:absolute;top:4px;right:0;display:inline-flex;align-items:center;justify-content:center;min-width:118px;min-height:45px;padding:0 20px;transform:translateY(-10px);border-radius:999px;border:1px solid rgba(255,255,255,.34);background:linear-gradient(135deg,#ff7d66,#ef473a 38%,#cf2f34);color:#fffaf7;font-size:.95rem;font-weight:700;letter-spacing:.02em;box-shadow:0 14px 30px #cf2f343d,0 0 0 1px #ffffff14 inset;overflow:hidden;isolation:isolate;transition:transform .18s ease,box-shadow .18s ease,filter .18s ease;animation:subject-action-glow 3.2s ease-in-out infinite}.subject-page .battle-title-action:before{content:"";position:absolute;top:1px;right:1px;bottom:1px;left:1px;border-radius:inherit;background:linear-gradient(180deg,#ffffff38,#fff0);opacity:.9;pointer-events:none;z-index:-1}.subject-page .battle-title-action:after{content:"";position:absolute;top:-55%;left:-32%;width:44%;height:210%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.34),transparent);transform:rotate(18deg);animation:subject-action-sheen 3.8s ease-in-out infinite;pointer-events:none}.subject-page .battle-title-action:hover{transform:translateY(-1px);filter:saturate(1.04);box-shadow:0 18px 36px #cf2f3447,0 0 26px #ff77653d}@keyframes subject-action-glow{0%,to{box-shadow:0 14px 30px #cf2f3438,0 0 0 1px #ffffff14 inset,0 0 #ff776500}50%{box-shadow:0 18px 36px #cf2f344d,0 0 0 1px #ffffff1a inset,0 0 24px #ff77653d}}@keyframes subject-action-sheen{0%,18%{transform:translate(0) rotate(18deg);opacity:0}24%{opacity:.85}44%{transform:translate(270%) rotate(18deg);opacity:0}to{transform:translate(270%) rotate(18deg);opacity:0}}.subject-page .battle-card-community{background:linear-gradient(180deg,#fffdfb,#fff6f1)}.subject-page .section-title h2,.subject-page .history-panel h2,.subject-page .prediction-card h3{color:#4d2124}.subject-page .prediction-card p,.subject-page .history-panel-copy,.subject-page .history-item span{color:#86645d}.subject-page .history-item{border-bottom-color:#d66e591a}.subject-page .knowledge-search-option,.subject-page .custom-point-chip,.subject-page .search-input-wrap{background:#fff9f5;border-color:#d66e5924;color:#8f584b}.subject-page .custom-point-chip.active{background:#fff0e7;color:#c74635}.subject-page .suggestion-group{border-top-color:#d66e591a}.modal-card{background:linear-gradient(180deg,#fff,#fff9f4);color:#4d2124}.feedback-banner.muted{background:#fff7f2;border-color:#d66e5924;color:#7f5d55;box-shadow:none}.modal-card .section-kicker,.modal-card strong,.modal-card h4{color:#4d2124}.modal-card p,.modal-card span,.modal-card label{color:#86645d}.modal-card input,.modal-card textarea{background:#fffaf7;color:#4d2124;border-color:#d66e5929}.modal-card-scroll-shell .modal-header,.modal-card .modal-footer{border-color:#d66e591f}.subject-page-info-modal{width:min(520px,100%);box-shadow:0 28px 72px #61251f2e}.subject-page-info-modal .modal-copy{margin-bottom:0;font-size:1rem;line-height:1.78;color:#75534b}.subject-page-info-modal .modal-actions{margin-top:24px}.subject-page-info-modal .btn-primary{min-width:120px}.modal-close-btn{background:#fff2e8;color:#c44735;border-color:#d66e5924}@media(max-width:960px){.landing-hero-panel{padding:32px 28px}.landing-hero-main{grid-template-columns:1fr;gap:22px}.hero-shortcut-strip{position:static;margin-top:28px;grid-template-columns:1fr}.hero-wave{display:none}.subject-rankings-section{margin-top:0}.landing-page .subject-rankings-section>.section-title h2,.landing-page .activity-feed-section>.section-title h2{max-width:760px}.landing-page .activity-feed-section>.section-title p{max-width:720px}.landing-page .subject-duel-header{display:grid;justify-items:start;gap:14px;min-height:0;padding-right:0}.landing-page .subject-duel-header-copy,.landing-page .subject-duel-header-copy-main{display:grid;justify-items:start;gap:10px;width:100%}.landing-page .subject-duel-header p{white-space:normal;overflow:visible;text-overflow:clip}.landing-page .subject-duel-header-action{position:static;transform:none}.landing-page .activity-feed-item{grid-template-columns:40px minmax(0,1fr);padding:0 16px}.landing-page .activity-feed-side{display:none}}@media(max-width:720px){.landing-hero-panel{padding:26px 20px}.landing-hero-panel .festive-copy{gap:14px;max-width:none;padding-top:0}.landing-hero-panel .hero-copy h1{max-width:none;font-size:clamp(2.3rem,10vw,3.1rem)}.hero-actions-left{margin-top:2px}.hero-status-inline{width:100%;border-radius:22px;align-items:flex-start}.hero-side-participants,.landing-hero-panel .countdown-card,.landing-page .subject-duel-row,.landing-page .activity-feed-item,.subject-page .battle-column{padding:18px}.participant-avatar-group{flex-wrap:wrap}.subject-page .battle-title{min-height:0}.landing-page .subject-rankings-section>.section-title span{min-height:38px;padding:0 14px;font-size:.92rem}.landing-page .subject-rankings-section>.section-title h2,.landing-page .activity-feed-section>.section-title h2{max-width:none;font-size:clamp(1.42rem,6.2vw,1.88rem)}.landing-page .activity-feed-section>.section-title p{font-size:.94rem;line-height:1.66}.landing-page .subject-duel-header-copy .section-kicker{min-width:70px;min-height:38px;font-size:.94rem}.landing-page .duel-column-head .pill{padding:10px 14px;font-size:.92rem}.landing-page .subject-duel-header h3{font-size:clamp(1.4rem,5.8vw,1.8rem)}.landing-page .subject-duel-header p{max-width:none;font-size:.94rem}.landing-page .subject-duel-header-action{width:100%;justify-content:center}.landing-page .activity-feed-item{min-height:72px;grid-template-columns:36px minmax(0,1fr);gap:12px;padding:0 14px}.landing-page .activity-feed-main p{font-size:.94rem}.landing-page .activity-feed-main strong{font-size:1rem;margin-right:10px}.subject-page .battle-title-actionable{padding-right:0}.subject-page .battle-title-actionable .battle-title-copy{max-width:none}.subject-page .battle-title-action{position:static;margin-top:14px;min-height:52px;width:100%;justify-content:center}.subject-page .battle-title h2{max-width:none}}
