:root {
  --night: #111916;
  --night-2: #18241f;
  --green: #1d7052;
  --mint: #b8dcca;
  --gold: #d2aa55;
  --paper: #f3f5f1;
  --ink: #17201c;
  --muted: #707b75;
  --line: #dce2dd;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Microsoft YaHei UI", "PingFang SC", Arial, sans-serif; letter-spacing: 0; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 30; height: 74px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 clamp(22px, 5vw, 76px); color: white;
  background: rgba(17,25,22,.9); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); transition: .25s ease;
}
.site-header.scrolled { height: 64px; background: rgba(17,25,22,.92); backdrop-filter: blur(14px); }
.site-brand { display: flex; align-items: center; gap: 10px; color: white; text-decoration: none; }
.site-brand img { width: 34px; height: 34px; display: block; border-radius: 6px; }
.site-brand strong { font-size: 15px; }
.site-header nav { display: flex; gap: 34px; }
.site-header nav a { position: relative; padding: 27px 0 24px; color: #aab7b0; text-decoration: none; font-size: 11px; }
.site-header nav a:hover { color: white; }
.site-header nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 1px; background: var(--gold); transition: .2s; }
.site-header nav a:hover::after { right: 0; }
.live-sign { justify-self: end; color: #b8c4bd; font-size: 10px; }
.live-sign i, .today-line i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; background: #5fca8e; border-radius: 50%; box-shadow: 0 0 0 4px rgba(95,202,142,.12); }

.section { position: relative; overflow: hidden; }
.hero { min-height: max(720px, 94svh); display: grid; place-items: center; color: white; background: var(--night); }
#mist-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .8; }
.hero-grid { position: absolute; inset: 12% 6% 9%; border: 1px solid rgba(255,255,255,.05); border-top-color: transparent; border-bottom-color: transparent; }
.hero::before { content: ""; position: absolute; top: 15%; bottom: 10%; left: 50%; width: 1px; background: rgba(255,255,255,.08); }
.hero-content { position: relative; z-index: 2; width: min(1040px, calc(100% - 40px)); padding-top: 46px; text-align: center; }
.hero-logo { width: 68px; height: 68px; display: block; margin: 0 auto 18px; border-radius: 8px; box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.eyebrow { margin: 0 0 15px; color: var(--gold); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; }
.eyebrow.dark { color: var(--green); }
.hero h1 { margin: 0; font-size: clamp(64px, 9vw, 118px); line-height: .95; font-weight: 900; }
.hero-subtitle { margin: 19px 0 42px; color: #b6c1bb; font-size: 15px; }
.hero-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-action {
  min-height: 132px; display: grid; grid-template-columns: 32px 1fr 34px; align-items: center; gap: 12px;
  padding: 21px; color: white; background: rgba(24,36,31,.78); border: 1px solid rgba(255,255,255,.16); border-radius: 7px;
  text-align: left; text-decoration: none; backdrop-filter: blur(8px); transition: .22s ease;
}
.hero-action:hover { transform: translateY(-5px); background: #213129; border-color: #6d887a; box-shadow: 0 18px 40px rgba(0,0,0,.22); }
.hero-action.order { border-top: 3px solid #58a783; }.hero-action.complaint { border-top: 3px solid #c5a65c; }.hero-action.career { border-top: 3px solid #7993a6; }
.action-index { align-self: flex-start; color: #6f8177; font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; }
.action-copy strong, .action-copy small { display: block; }
.action-copy strong { margin-bottom: 9px; font-size: 21px; }
.action-copy small { color: #91a299; font-size: 10px; }
.action-arrow { width: 31px; height: 31px; display: grid; place-items: center; align-self: flex-end; border: 1px solid #526159; border-radius: 50%; }
.hero-action:hover .action-arrow { color: var(--night); background: var(--gold); border-color: var(--gold); }
.hero-foot { position: absolute; inset: auto clamp(20px,5vw,76px) 22px; display: flex; align-items: center; gap: 26px; color: #6f8177; font-size: 9px; }
.hero-foot span { padding-left: 13px; border-left: 1px solid #526159; }
.hero-foot a { margin-left: auto; color: #b8c4bd; text-decoration: none; }

.daily { padding: 108px 0 120px; background: var(--paper); }
.daily::before { content: "DAILY"; position: absolute; top: 45px; right: -18px; color: #e7ebe7; font-family: Arial, sans-serif; font-size: 150px; font-weight: 900; line-height: 1; }
.section-inner { position: relative; width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.section-title { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 62px; }
.section-title h2 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.15; }
.section-title > p { margin: 0 0 5px; color: var(--muted); font-size: 12px; line-height: 1.9; }
.block-title { display: flex; align-items: center; gap: 15px; margin-bottom: 17px; }
.block-title > span, .panel-heading > div > span { color: var(--gold); font-family: Arial, sans-serif; font-size: 12px; font-weight: 900; }
.block-title h3, .block-title p { margin: 0; }.block-title h3 { font-size: 16px; }.block-title p { margin-top: 5px; color: var(--muted); font-size: 9px; }
.today-line { margin-left: auto; color: var(--muted); font-size: 9px; }
.recommend-grid { min-height: 230px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin-bottom: 52px; }
.recommend-card { position: relative; overflow: hidden; min-height: 230px; padding: 24px; background: white; border: 1px solid var(--line); border-radius: 7px; }
.recommend-card::after { content: attr(data-rank); position: absolute; right: -4px; bottom: -24px; color: #f0f3f0; font-family: Georgia, serif; font-size: 105px; font-weight: 700; }
.recommend-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.rec-avatar { width: 47px; height: 47px; display: grid; place-items: center; color: white; background: var(--night-2); border-radius: 50%; font-size: 18px; font-weight: 900; }
.rec-online { color: var(--green); font-size: 9px; }.rec-online i { display: inline-block; width: 6px; height: 6px; margin-right: 6px; background: #56b983; border-radius: 50%; }
.recommend-card h4 { position: relative; z-index: 1; margin: 20px 0 5px; font-size: 19px; }.recommend-card > p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 10px; }
.rec-stats { position: relative; z-index: 1; display: flex; gap: 24px; margin-top: 26px; }
.rec-stats strong, .rec-stats span { display: block; }.rec-stats strong { font-family: Arial, sans-serif; font-size: 17px; }.rec-stats span { margin-top: 4px; color: var(--muted); font-size: 8px; }
.rec-order { position: absolute; z-index: 2; right: 20px; bottom: 20px; width: 34px; height: 34px; color: white; background: var(--green); border: 0; border-radius: 50%; }
.public-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(360px,.75fr); gap: 15px; }
.ranking-panel, .turnover-panel { background: white; border: 1px solid var(--line); border-radius: 7px; }
.panel-heading { min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border-bottom: 1px solid var(--line); }
.panel-heading > div { display: flex; align-items: center; gap: 13px; }.panel-heading h3 { margin: 0; font-size: 16px; }.panel-heading small { color: var(--muted); font-size: 9px; }
.ranking-list { padding: 8px 22px; }
.public-rank-row { min-height: 62px; display: grid; grid-template-columns: 35px 36px 1fr 100px 90px; align-items: center; gap: 10px; border-bottom: 1px solid #edf0ed; }
.public-rank-row:last-child { border: 0; }.public-rank-row > b { color: #858f89; font-family: Arial, sans-serif; font-size: 11px; }.public-rank-row > b.top { color: var(--gold); }
.rank-avatar { width: 31px; height: 31px; display: grid; place-items: center; color: white; background: #3d5c4e; border-radius: 50%; font-size: 10px; font-weight: 800; }
.rank-name strong, .rank-name span, .rank-number strong, .rank-number span { display: block; }.rank-name strong { font-size: 11px; }.rank-name span, .rank-number span { margin-top: 4px; color: var(--muted); font-size: 8px; }
.rank-number { text-align: right; }.rank-number strong { font-family: Arial, sans-serif; font-size: 11px; }.rank-trend { color: var(--green); text-align: right; font-size: 10px; }
.turnover-panel { padding: 24px; color: white; background: var(--night-2); border-color: var(--night-2); }
.turnover-top { display: flex; align-items: center; gap: 10px; }.turnover-top > span { color: var(--gold); font-family: Arial, sans-serif; font-size: 12px; font-weight: 900; }.turnover-top p { margin: 0; font-size: 16px; font-weight: 800; }.turnover-top i { margin-left: auto; padding: 4px 7px; color: #abd6c1; background: #294738; border-radius: 3px; font-style: normal; font-size: 8px; }
.turnover-value { margin-top: 34px; }.turnover-value small { margin-right: 8px; color: var(--gold); font-size: 21px; }.turnover-value strong { font-family: Arial, sans-serif; font-size: clamp(48px,6vw,72px); line-height: 1; }
.turnover-note { margin: 9px 0 28px; color: #899a91; font-size: 9px; }
.turnover-data { display: grid; grid-template-columns: repeat(3,1fr); padding: 17px 0; border-top: 1px solid #34463d; border-bottom: 1px solid #34463d; }
.turnover-data div { text-align: center; border-right: 1px solid #34463d; }.turnover-data div:last-child { border: 0; }.turnover-data strong, .turnover-data span { display: block; }.turnover-data strong { font-family: Arial, sans-serif; }.turnover-data span { margin-top: 5px; color: #899a91; font-size: 8px; }
.transparency-note { margin-top: 22px; }.transparency-note span { color: var(--gold); font-size: 9px; font-weight: 700; }.transparency-note p { margin: 8px 0 0; color: #899a91; font-size: 9px; line-height: 1.7; }
.loading-line { grid-column: 1 / -1; display: grid; place-items: center; min-height: 160px; color: var(--muted); border: 1px dashed #cdd5cf; border-radius: 7px; font-size: 11px; }
.latest-reviews-section { margin-top:58px; }.reviews-title { margin-bottom:14px; }.latest-review-grid { display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:9px; }.latest-review-card { min-width:0;min-height:205px;padding:17px;background:white;border:1px solid var(--line);border-radius:6px; }.latest-review-head { display:grid;grid-template-columns:33px 1fr;align-items:center;gap:8px; }.latest-avatar { width:33px;height:33px;display:grid;place-items:center;color:white;background:var(--green);border-radius:50%;font-size:10px;font-weight:800; }.latest-review-head div { display:flex;flex-direction:column;gap:3px;min-width:0; }.latest-review-head strong { overflow:hidden;font-size:10px;text-overflow:ellipsis;white-space:nowrap; }.latest-review-head small { color:var(--muted);font-size:8px; }.latest-stars { display:block;margin-top:16px;color:var(--gold);font-size:11px;letter-spacing:1px; }.latest-review-card > p { min-height:58px;margin:10px 0 15px;color:#3a443f;font-size:9px;line-height:1.7; }.latest-review-meta { display:flex;justify-content:space-between;padding-top:10px;border-top:1px solid var(--line);color:var(--muted);font-size:8px; }
@media(max-width:1050px) { .latest-review-grid { grid-template-columns:repeat(3,1fr); } }
@media(max-width:620px) { .latest-review-grid { display:grid;grid-auto-flow:column;grid-auto-columns:78%;grid-template-columns:none;overflow-x:auto;padding-bottom:9px;scroll-snap-type:x mandatory; }.latest-review-card { scroll-snap-align:start; }.latest-reviews-section { margin-top:42px; } }

.future { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 110px 30px 120px; color: white; background: #101714; }
.future-lines { position: absolute; inset: 12% 10%; opacity: .45; border: 1px solid rgba(255,255,255,.06); border-left-color: transparent; border-right-color: transparent; }
.future::before, .future::after { content: ""; position: absolute; background: #31423a; }.future::before { top: 0; bottom: 0; left: 14%; width: 1px; }.future::after { left: 0; right: 0; top: 23%; height: 1px; }
.future-content { position: relative; z-index: 2; text-align: center; }
.lock-mark { display: inline-grid; place-items: center; width: 82px; height: 82px; color: var(--gold); border: 1px solid #5f5541; border-radius: 50%; font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; }
.future h2 { margin: 25px 0 12px; font-size: clamp(58px, 10vw, 112px); line-height: 1; }.future-content > p:last-child { margin: 0; color: #748079; font-size: 12px; }
.entrance-dock { position: absolute; z-index: 3; left: 50%; bottom: 66px; width: min(680px, calc(100% - 34px)); display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; transform: translateX(-50%); }
.entrance-dock button, .entrance-dock a { min-height: 72px; display: grid; grid-template-columns: 33px 1fr; grid-template-rows: 1fr 1fr; align-items: center; column-gap: 10px; padding: 12px 15px; color: white; background: #1b2621; border: 1px solid #334139; border-radius: 6px; text-align: left; text-decoration: none; }
.entrance-dock button:hover, .entrance-dock a:hover { background: #26352e; border-color: #6f806f; transform: translateY(-3px); }
.entrance-dock button > span, .entrance-dock a > span { grid-row: 1 / 3; width: 31px; height: 31px; display: grid; place-items: center; color: var(--gold); border: 1px solid #5a523e; border-radius: 5px; font-size: 11px; font-weight: 800; }.entrance-dock strong { align-self: end; font-size: 11px; }.entrance-dock small { align-self: start; color: #718078; font-family: Arial, sans-serif; font-size: 7px; }
.future footer { position: absolute; inset: auto 5vw 22px; display: flex; gap: 24px; color: #55625b; font-size: 8px; }.future footer a { margin-left: auto; color: #86948c; text-decoration: none; }

.home-modal-backdrop { position: fixed; inset: 0; z-index: 60; display: grid; place-items: center; padding: 18px; background: rgba(8,13,10,.72); backdrop-filter: blur(7px); }
.home-modal { width: min(620px, 100%); max-height: calc(100svh - 36px); overflow-y: auto; background: #fff; border-radius: 8px; box-shadow: 0 26px 80px rgba(0,0,0,.32); }
.modal-bar { display: flex; justify-content: space-between; align-items: flex-start; padding: 24px 26px 18px; border-bottom: 1px solid var(--line); }.modal-bar p { margin: 0 0 5px; color: var(--green); font-size: 9px; font-weight: 800; }.modal-bar h2 { margin: 0; font-size: 21px; }.modal-bar button { width: 38px; height: 38px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 6px; font-size: 20px; }
.modal-content { padding: 22px 26px 26px; }.modal-intro { margin: 0 0 19px; color: var(--muted); font-size: 11px; line-height: 1.7; }
.home-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }.home-form label { display: block; }.home-form label.full { grid-column: 1 / -1; }.home-form label > span { display: block; margin-bottom: 7px; color: #49534d; font-size: 10px; font-weight: 700; }
.home-form input, .home-form select, .home-form textarea { width: 100%; color: var(--ink); background: white; border: 1px solid #d5dcd7; border-radius: 5px; outline: none; }.home-form input, .home-form select { height: 42px; padding: 0 11px; }.home-form textarea { padding: 10px 11px; resize: vertical; line-height: 1.6; }.home-form input:focus, .home-form select:focus, .home-form textarea:focus { border-color: #6a9581; box-shadow: 0 0 0 3px rgba(29,112,82,.08); }
.submit-home { grid-column: 1 / -1; height: 43px; margin-top: 4px; color: white; background: var(--green); border: 0; border-radius: 5px; font-weight: 800; }.submit-home:hover { background: #155c42; }.submit-home:disabled { opacity: .6; cursor: wait; }
.login-box { width: min(390px,100%); margin: 0 auto; }.login-notice { display: flex; gap: 9px; margin-bottom: 17px; padding: 11px; color: var(--muted); background: #f4f7f4; font-size: 9px; line-height: 1.6; }.login-notice b { color: var(--green); }
.kook-box { padding: 22px; text-align: center; background: #f4f6f3; border: 1px solid var(--line); border-radius: 6px; }.kook-symbol { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 16px; color: white; background: #2e3844; border-radius: 8px; font-family: Arial, sans-serif; font-size: 25px; font-weight: 900; }.kook-box h3 { margin: 0 0 8px; }.kook-box p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.7; }.kook-join { min-width: 150px; height: 42px; display: inline-grid; place-items: center; margin-top: 18px; color: white; background: var(--green); border-radius: 5px; text-decoration: none; font-size: 10px; font-weight: 800; }
.home-toast { position: fixed; z-index: 100; left: 50%; bottom: 25px; min-width: 230px; padding: 13px 17px; color: white; background: #19241f; border-radius: 6px; text-align: center; box-shadow: 0 15px 40px rgba(0,0,0,.2); transform: translate(-50%,20px); opacity: 0; pointer-events: none; transition: .22s; font-size: 11px; }.home-toast.show { transform: translate(-50%,0); opacity: 1; }

@media (max-width: 840px) {
  .site-header { height: 64px; grid-template-columns: 1fr auto; padding: 0 18px; }.site-header nav { display: none; }.live-sign { font-size: 8px; }
  .hero { min-height: 92svh; }.hero::before { display: none; }.hero-content { padding: 75px 0 45px; }.hero h1 { font-size: clamp(54px,18vw,78px); }.hero-subtitle { margin: 13px 0 29px; }
  .hero-actions { grid-template-columns: 1fr; gap: 8px; width: min(440px,100%); margin: 0 auto; }.hero-action { min-height: 86px; padding: 14px 16px; }.action-copy strong { margin-bottom: 5px; font-size: 17px; }.hero-foot { gap: 12px; font-size: 7px; }.hero-foot span:nth-child(3) { display: none; }
  .daily { padding: 80px 0 90px; }.daily::before { top: 20px; font-size: 82px; }.section-title { align-items: flex-start; flex-direction: column; gap: 15px; margin-bottom: 45px; }.section-title h2 { font-size: 36px; }.section-title > p { font-size: 10px; }
  .recommend-grid, .public-grid { grid-template-columns: 1fr; }.recommend-grid { gap: 9px; }.recommend-card { min-height: 205px; }.public-grid { gap: 12px; }.public-rank-row { grid-template-columns: 28px 32px 1fr 78px; }.public-rank-row .rank-number:nth-last-child(2) { display: none; }

  .turnover-panel { min-height: 405px; }.turnover-value strong { font-size: 60px; }
  .future { min-height: 100svh; padding-bottom: 210px; }.future h2 { font-size: 62px; }.entrance-dock { bottom: 60px; grid-template-columns: 1fr; gap: 6px; }.entrance-dock button, .entrance-dock a { min-height: 52px; }.future footer { display: none; }
  .home-form { grid-template-columns: 1fr; }.home-form label.full, .submit-home { grid-column: auto; }.modal-bar { padding: 20px 18px 15px; }.modal-content { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
.player-entry-grid { display:grid;grid-template-columns:1fr 1fr;gap:10px; }.player-entry-grid button { min-height:125px;display:grid;grid-template-columns:37px 1fr auto;grid-template-rows:1fr 1fr;align-items:center;gap:4px 11px;padding:17px;color:var(--ink);background:#f7f9f7;border:1px solid var(--line);border-radius:6px;text-align:left; }.player-entry-grid button:hover { background:#edf5f0;border-color:#91b3a3;transform:translateY(-2px); }.player-entry-grid button > span { grid-row:1/3;width:34px;height:34px;display:grid;place-items:center;color:var(--green);background:#e2efe8;border-radius:5px;font-size:10px;font-weight:900; }.player-entry-grid strong { align-self:end;font-size:13px; }.player-entry-grid small { align-self:start;color:var(--muted);font-size:8px; }.player-entry-grid i { grid-column:3;grid-row:1/3;color:var(--green);font-style:normal; }.home-form-field > span { display:block;margin-bottom:8px;color:#49514d;font-size:11px;font-weight:700; }.home-segment { height:41px;display:grid;grid-template-columns:1fr 1fr;padding:3px;background:#eef1ee;border:1px solid #d5dcd7;border-radius:5px; }.home-segment input { position:absolute;width:1px;height:1px;opacity:0; }.home-segment label { display:grid;place-items:center;color:var(--muted);border-radius:4px;font-size:10px;font-weight:700;cursor:pointer; }.home-segment input:checked + label { color:white;background:var(--green); }
@media (max-width:600px) { .player-entry-grid { grid-template-columns:1fr; }.player-entry-grid button { min-height:86px; } }
