styles.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906
  1. :root {
  2. color-scheme: light;
  3. font-family: "Arial Narrow", "Bahnschrift", "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  4. --bg: #f7fbff;
  5. --ink: #0a1230;
  6. --muted: #526076;
  7. --chrome: linear-gradient(135deg, #ffffff 0%, #dfe9ff 30%, #8df7ff 52%, #ff9bf2 72%, #ffffff 100%);
  8. --glass: rgba(255, 255, 255, 0.68);
  9. --glass-strong: rgba(255, 255, 255, 0.86);
  10. --line: rgba(75, 106, 171, 0.22);
  11. --cyan: #00d9ff;
  12. --mint: #22ffc8;
  13. --pink: #ff4fd8;
  14. --purple: #7d5cff;
  15. --blue: #236dff;
  16. --warning: #ffb02e;
  17. --danger: #d70065;
  18. --shadow: 0 22px 60px rgba(38, 70, 137, 0.18);
  19. --glow-cyan: 0 0 0 1px rgba(0, 217, 255, 0.55), 0 0 24px rgba(0, 217, 255, 0.28);
  20. --glow-pink: 0 0 0 1px rgba(255, 79, 216, 0.55), 0 0 24px rgba(255, 79, 216, 0.26);
  21. }
  22. * {
  23. box-sizing: border-box;
  24. }
  25. html {
  26. min-height: 100%;
  27. }
  28. body {
  29. margin: 0;
  30. min-height: 100vh;
  31. color: var(--ink);
  32. background:
  33. linear-gradient(rgba(35, 109, 255, 0.08) 1px, transparent 1px),
  34. linear-gradient(90deg, rgba(255, 79, 216, 0.08) 1px, transparent 1px),
  35. radial-gradient(circle at 20% 14%, rgba(0, 217, 255, 0.22), transparent 28%),
  36. radial-gradient(circle at 78% 18%, rgba(255, 79, 216, 0.18), transparent 30%),
  37. linear-gradient(135deg, #fdf8ff 0%, #edf8ff 45%, #fff7fd 100%);
  38. background-size: 36px 36px, 36px 36px, 100% 100%, 100% 100%, 100% 100%;
  39. overflow-x: hidden;
  40. }
  41. body::before {
  42. content: "";
  43. position: fixed;
  44. inset: 0;
  45. pointer-events: none;
  46. background-image:
  47. radial-gradient(circle, rgba(255, 255, 255, 0.88) 0 1px, transparent 1.4px),
  48. linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.38) 42%, transparent 58%);
  49. background-size: 92px 92px, 240px 240px;
  50. opacity: 0.42;
  51. mix-blend-mode: screen;
  52. }
  53. button,
  54. textarea {
  55. font: inherit;
  56. }
  57. button {
  58. transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
  59. }
  60. button:hover,
  61. button:focus-visible {
  62. box-shadow: var(--glow-pink);
  63. transform: translateY(-1px);
  64. outline: none;
  65. }
  66. .scanline {
  67. position: fixed;
  68. inset: 0;
  69. pointer-events: none;
  70. z-index: 50;
  71. background: repeating-linear-gradient(
  72. to bottom,
  73. rgba(255, 255, 255, 0.08) 0,
  74. rgba(255, 255, 255, 0.08) 1px,
  75. transparent 1px,
  76. transparent 5px
  77. );
  78. opacity: 0.35;
  79. }
  80. .top-nav {
  81. position: sticky;
  82. top: 0;
  83. z-index: 20;
  84. min-height: 72px;
  85. padding: 12px 24px;
  86. display: grid;
  87. grid-template-columns: minmax(220px, auto) 1fr minmax(190px, auto);
  88. align-items: center;
  89. gap: 18px;
  90. border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  91. background:
  92. linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(241, 248, 255, 0.62)),
  93. var(--chrome);
  94. backdrop-filter: blur(18px) saturate(1.4);
  95. box-shadow: 0 10px 28px rgba(33, 53, 120, 0.13);
  96. }
  97. .brand {
  98. display: flex;
  99. gap: 12px;
  100. align-items: center;
  101. min-width: 0;
  102. }
  103. .brand img {
  104. width: 44px;
  105. height: 44px;
  106. border-radius: 15px;
  107. object-fit: cover;
  108. border: 1px solid rgba(255, 255, 255, 0.86);
  109. box-shadow: var(--glow-cyan);
  110. }
  111. .brand strong {
  112. display: block;
  113. font-size: 18px;
  114. line-height: 1.2;
  115. font-weight: 900;
  116. }
  117. .brand span,
  118. .session-card span {
  119. display: block;
  120. margin-top: 3px;
  121. color: var(--muted);
  122. font-size: 11px;
  123. font-weight: 800;
  124. letter-spacing: 0.08em;
  125. }
  126. .nav {
  127. display: flex;
  128. justify-content: center;
  129. gap: 8px;
  130. }
  131. .nav-item {
  132. border: 1px solid rgba(255, 255, 255, 0.78);
  133. border-radius: 999px;
  134. padding: 9px 18px;
  135. color: #121a42;
  136. background: rgba(255, 255, 255, 0.48);
  137. text-align: center;
  138. cursor: pointer;
  139. font-weight: 900;
  140. }
  141. .nav-item.active,
  142. .nav-item:hover {
  143. border-color: rgba(0, 217, 255, 0.72);
  144. background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(146, 247, 255, 0.5));
  145. }
  146. .session-card {
  147. justify-self: end;
  148. min-width: 190px;
  149. padding: 9px 12px;
  150. border: 1px solid rgba(255, 255, 255, 0.82);
  151. border-radius: 18px;
  152. display: flex;
  153. align-items: center;
  154. gap: 10px;
  155. background: rgba(255, 255, 255, 0.52);
  156. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 24px rgba(55, 88, 167, 0.12);
  157. }
  158. .status-dot {
  159. width: 11px;
  160. height: 11px;
  161. border-radius: 999px;
  162. background: var(--warning);
  163. box-shadow: 0 0 0 5px rgba(255, 176, 46, 0.18), 0 0 18px rgba(255, 176, 46, 0.8);
  164. flex: 0 0 auto;
  165. }
  166. .status-dot.ok {
  167. background: var(--mint);
  168. box-shadow: 0 0 0 5px rgba(34, 255, 200, 0.18), 0 0 18px rgba(34, 255, 200, 0.85);
  169. }
  170. .status-dot.error {
  171. background: var(--danger);
  172. box-shadow: 0 0 0 5px rgba(215, 0, 101, 0.16), 0 0 18px rgba(215, 0, 101, 0.72);
  173. }
  174. .shell {
  175. position: relative;
  176. z-index: 1;
  177. width: min(1500px, calc(100% - 40px));
  178. margin: 0 auto;
  179. padding: 22px 0 28px;
  180. }
  181. .hero {
  182. min-height: 245px;
  183. display: grid;
  184. grid-template-columns: minmax(0, 1fr) 320px;
  185. gap: 18px;
  186. align-items: stretch;
  187. margin-bottom: 16px;
  188. }
  189. .hero-copy,
  190. .hero-panel,
  191. .feature-card,
  192. .chat-card,
  193. .panel {
  194. border: 1px solid rgba(255, 255, 255, 0.78);
  195. background: var(--glass);
  196. backdrop-filter: blur(18px) saturate(1.32);
  197. box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  198. }
  199. .hero-copy {
  200. position: relative;
  201. overflow: hidden;
  202. border-radius: 32px;
  203. padding: 32px;
  204. }
  205. .hero-copy::after {
  206. content: "";
  207. position: absolute;
  208. inset: auto 26px 22px auto;
  209. width: 180px;
  210. height: 22px;
  211. border-radius: 999px;
  212. background: linear-gradient(90deg, var(--cyan), var(--pink));
  213. filter: blur(18px);
  214. opacity: 0.58;
  215. }
  216. .eyebrow {
  217. display: inline-flex;
  218. align-items: center;
  219. gap: 8px;
  220. padding: 7px 12px;
  221. border-radius: 999px;
  222. border: 1px solid rgba(0, 217, 255, 0.46);
  223. background: rgba(255, 255, 255, 0.58);
  224. color: #1143a3;
  225. font-size: 12px;
  226. font-weight: 900;
  227. letter-spacing: 0.12em;
  228. }
  229. .hero h1 {
  230. margin: 16px 0 8px;
  231. max-width: 900px;
  232. font-size: 44px;
  233. line-height: 1.08;
  234. font-weight: 950;
  235. letter-spacing: 0;
  236. color: #07143b;
  237. text-shadow: 0 1px 0 #fff, 0 0 24px rgba(0, 217, 255, 0.42);
  238. }
  239. .hero p {
  240. margin: 0;
  241. max-width: 760px;
  242. color: #26344e;
  243. font-size: 16px;
  244. line-height: 1.8;
  245. }
  246. .hero-actions {
  247. display: flex;
  248. flex-wrap: wrap;
  249. align-items: center;
  250. gap: 12px;
  251. margin-top: 24px;
  252. }
  253. .chrome-button,
  254. .system-pill {
  255. border-radius: 999px;
  256. font-weight: 900;
  257. }
  258. .chrome-button {
  259. border: 1px solid rgba(255, 255, 255, 0.92);
  260. min-height: 42px;
  261. padding: 0 22px;
  262. color: #07143b;
  263. background: var(--chrome);
  264. cursor: pointer;
  265. }
  266. .system-pill {
  267. display: inline-flex;
  268. align-items: center;
  269. min-height: 42px;
  270. padding: 0 16px;
  271. border: 1px solid rgba(125, 92, 255, 0.36);
  272. background: rgba(255, 255, 255, 0.62);
  273. color: #5320bd;
  274. font-size: 12px;
  275. letter-spacing: 0.1em;
  276. }
  277. .hero-panel {
  278. position: relative;
  279. overflow: hidden;
  280. border-radius: 32px;
  281. padding: 24px;
  282. display: grid;
  283. place-items: center;
  284. background:
  285. linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(190, 247, 255, 0.38)),
  286. var(--chrome);
  287. }
  288. .orbital-ring {
  289. position: absolute;
  290. width: 210px;
  291. height: 210px;
  292. border-radius: 50%;
  293. border: 2px solid rgba(255, 255, 255, 0.72);
  294. box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.86), 0 0 28px rgba(0, 217, 255, 0.42);
  295. }
  296. .orbital-ring::after {
  297. content: "";
  298. position: absolute;
  299. inset: 26px;
  300. border-radius: 50%;
  301. border: 1px dashed rgba(83, 32, 189, 0.42);
  302. }
  303. .hero-logo {
  304. position: relative;
  305. z-index: 1;
  306. width: 116px;
  307. height: 116px;
  308. border-radius: 36px;
  309. display: grid;
  310. place-items: center;
  311. background: rgba(255, 255, 255, 0.55);
  312. border: 1px solid rgba(255, 255, 255, 0.86);
  313. box-shadow: var(--glow-cyan), inset 0 1px 0 #fff;
  314. }
  315. .hero-logo img {
  316. width: 86px;
  317. height: 86px;
  318. border-radius: 50%;
  319. object-fit: cover;
  320. }
  321. .mini-display {
  322. position: absolute;
  323. left: 18px;
  324. right: 18px;
  325. bottom: 18px;
  326. padding: 12px 14px;
  327. border-radius: 18px;
  328. background: rgba(8, 18, 48, 0.74);
  329. color: #e8fbff;
  330. box-shadow: inset 0 0 0 1px rgba(141, 247, 255, 0.32);
  331. }
  332. .mini-display span,
  333. .mini-display strong {
  334. display: block;
  335. }
  336. .mini-display span {
  337. font-size: 11px;
  338. color: #8df7ff;
  339. letter-spacing: 0.14em;
  340. font-weight: 900;
  341. }
  342. .mini-display strong {
  343. margin-top: 4px;
  344. font-size: 20px;
  345. color: #fff;
  346. }
  347. .feature-strip {
  348. display: grid;
  349. grid-template-columns: repeat(4, minmax(0, 1fr));
  350. gap: 14px;
  351. margin-bottom: 16px;
  352. }
  353. .feature-card {
  354. border-radius: 24px;
  355. padding: 16px;
  356. min-height: 118px;
  357. }
  358. .feature-card span {
  359. display: inline-flex;
  360. width: 36px;
  361. height: 24px;
  362. border-radius: 999px;
  363. align-items: center;
  364. justify-content: center;
  365. background: #081230;
  366. color: var(--mint);
  367. font-size: 12px;
  368. font-weight: 900;
  369. box-shadow: 0 0 18px rgba(34, 255, 200, 0.36);
  370. }
  371. .feature-card strong {
  372. display: block;
  373. margin-top: 12px;
  374. font-size: 18px;
  375. }
  376. .feature-card p {
  377. margin: 6px 0 0;
  378. color: var(--muted);
  379. font-size: 13px;
  380. line-height: 1.55;
  381. }
  382. .workspace {
  383. display: grid;
  384. grid-template-columns: minmax(600px, 1fr) 380px;
  385. gap: 16px;
  386. align-items: stretch;
  387. }
  388. .chat-card,
  389. .panel {
  390. border-radius: 24px;
  391. }
  392. .chat-card {
  393. min-height: calc(100vh - 444px);
  394. display: grid;
  395. grid-template-rows: auto minmax(360px, 1fr) auto;
  396. overflow: hidden;
  397. }
  398. .window-bar {
  399. height: 44px;
  400. padding: 0 16px;
  401. display: flex;
  402. align-items: center;
  403. gap: 8px;
  404. border-bottom: 1px solid rgba(255, 255, 255, 0.74);
  405. background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(187, 229, 255, 0.56));
  406. }
  407. .window-bar span {
  408. width: 12px;
  409. height: 12px;
  410. border-radius: 50%;
  411. background: var(--pink);
  412. box-shadow: 0 0 12px rgba(255, 79, 216, 0.75);
  413. }
  414. .window-bar span:nth-child(2) {
  415. background: var(--warning);
  416. box-shadow: 0 0 12px rgba(255, 176, 46, 0.72);
  417. }
  418. .window-bar span:nth-child(3) {
  419. background: var(--mint);
  420. box-shadow: 0 0 12px rgba(34, 255, 200, 0.72);
  421. }
  422. .window-bar strong {
  423. margin-left: 8px;
  424. color: #26344e;
  425. font-size: 12px;
  426. letter-spacing: 0.14em;
  427. }
  428. .messages {
  429. padding: 20px;
  430. overflow: auto;
  431. scroll-behavior: smooth;
  432. }
  433. .message-row {
  434. display: grid;
  435. grid-template-columns: 38px minmax(0, 1fr);
  436. gap: 12px;
  437. margin-bottom: 18px;
  438. }
  439. .message-row.user {
  440. grid-template-columns: minmax(0, 1fr) 38px;
  441. }
  442. .avatar {
  443. width: 38px;
  444. height: 38px;
  445. border-radius: 15px;
  446. background: linear-gradient(135deg, #ffffff, #aaf7ff 55%, #ffb5ef);
  447. color: #07143b;
  448. display: grid;
  449. place-items: center;
  450. font-size: 14px;
  451. font-weight: 900;
  452. overflow: hidden;
  453. border: 1px solid rgba(255, 255, 255, 0.82);
  454. box-shadow: var(--glow-cyan);
  455. }
  456. .avatar img {
  457. width: 100%;
  458. height: 100%;
  459. object-fit: cover;
  460. }
  461. .bubble {
  462. width: min(100%, 820px);
  463. border-radius: 20px;
  464. padding: 15px 17px;
  465. background: rgba(255, 255, 255, 0.76);
  466. border: 1px solid rgba(255, 255, 255, 0.72);
  467. line-height: 1.75;
  468. white-space: pre-wrap;
  469. color: #101936;
  470. box-shadow: 0 12px 28px rgba(50, 72, 140, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  471. }
  472. .message-row.user .bubble {
  473. justify-self: end;
  474. background: linear-gradient(135deg, rgba(217, 255, 247, 0.86), rgba(255, 222, 249, 0.8));
  475. box-shadow: var(--glow-pink);
  476. }
  477. .message-row.user .avatar {
  478. grid-column: 2;
  479. grid-row: 1;
  480. }
  481. .message-row.user .bubble {
  482. grid-column: 1;
  483. grid-row: 1;
  484. }
  485. .typing {
  486. display: inline-flex;
  487. align-items: center;
  488. gap: 6px;
  489. white-space: nowrap;
  490. font-weight: 900;
  491. color: #5320bd;
  492. }
  493. .typing i {
  494. width: 7px;
  495. height: 7px;
  496. border-radius: 50%;
  497. background: var(--pink);
  498. animation: pulse 1s infinite ease-in-out;
  499. box-shadow: 0 0 10px rgba(255, 79, 216, 0.8);
  500. }
  501. .typing i:nth-child(2) {
  502. animation-delay: 0.15s;
  503. background: var(--cyan);
  504. }
  505. .typing i:nth-child(3) {
  506. animation-delay: 0.3s;
  507. background: var(--mint);
  508. }
  509. @keyframes pulse {
  510. 0%,
  511. 80%,
  512. 100% {
  513. opacity: 0.35;
  514. transform: translateY(0);
  515. }
  516. 40% {
  517. opacity: 1;
  518. transform: translateY(-3px);
  519. }
  520. }
  521. .table-card {
  522. margin-top: 14px;
  523. border: 1px solid rgba(141, 247, 255, 0.52);
  524. border-radius: 18px;
  525. background: rgba(255, 255, 255, 0.9);
  526. overflow: hidden;
  527. box-shadow: 0 0 28px rgba(0, 217, 255, 0.16);
  528. }
  529. .table-head {
  530. display: flex;
  531. justify-content: space-between;
  532. align-items: center;
  533. gap: 10px;
  534. padding: 11px 13px;
  535. background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(205, 247, 255, 0.62));
  536. border-bottom: 1px solid rgba(75, 106, 171, 0.2);
  537. }
  538. .table-head strong {
  539. font-size: 14px;
  540. }
  541. .table-head button {
  542. border: 1px solid rgba(255, 79, 216, 0.42);
  543. background: rgba(255, 255, 255, 0.84);
  544. color: #9b147c;
  545. border-radius: 999px;
  546. padding: 6px 11px;
  547. cursor: pointer;
  548. white-space: nowrap;
  549. font-weight: 900;
  550. }
  551. .table-wrap {
  552. overflow: auto;
  553. max-height: 430px;
  554. }
  555. table {
  556. width: 100%;
  557. min-width: 700px;
  558. border-collapse: collapse;
  559. font-size: 13px;
  560. }
  561. th,
  562. td {
  563. border-bottom: 1px solid rgba(75, 106, 171, 0.16);
  564. padding: 10px 12px;
  565. text-align: left;
  566. vertical-align: top;
  567. word-break: break-word;
  568. }
  569. th {
  570. position: sticky;
  571. top: 0;
  572. z-index: 1;
  573. background: #f7fbff;
  574. color: #141e43;
  575. font-weight: 900;
  576. }
  577. tbody tr:nth-child(even) {
  578. background: rgba(235, 250, 255, 0.58);
  579. }
  580. .composer {
  581. margin: 0 20px 20px;
  582. border: 1px solid rgba(255, 255, 255, 0.78);
  583. border-radius: 22px;
  584. padding: 11px;
  585. background: rgba(255, 255, 255, 0.72);
  586. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  587. }
  588. .composer:focus-within {
  589. border-color: rgba(0, 217, 255, 0.8);
  590. box-shadow: var(--glow-cyan), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  591. }
  592. .composer textarea {
  593. width: 100%;
  594. min-height: 76px;
  595. max-height: 190px;
  596. border: 0;
  597. outline: 0;
  598. resize: vertical;
  599. color: var(--ink);
  600. background: transparent;
  601. }
  602. .composer textarea::placeholder {
  603. color: #69768b;
  604. }
  605. .composer-footer {
  606. display: flex;
  607. justify-content: space-between;
  608. align-items: center;
  609. color: var(--muted);
  610. font-size: 12px;
  611. }
  612. .send-button {
  613. border: 1px solid rgba(255, 255, 255, 0.84);
  614. border-radius: 16px;
  615. min-width: 98px;
  616. height: 42px;
  617. padding: 0 16px;
  618. background: linear-gradient(135deg, #081230, #5a2bff 48%, #ff4fd8);
  619. color: #fff;
  620. display: inline-flex;
  621. align-items: center;
  622. justify-content: center;
  623. gap: 8px;
  624. cursor: pointer;
  625. font-weight: 900;
  626. box-shadow: 0 12px 26px rgba(125, 92, 255, 0.28);
  627. }
  628. .send-button:disabled {
  629. cursor: not-allowed;
  630. opacity: 0.66;
  631. }
  632. .send-icon,
  633. .send-text {
  634. white-space: nowrap;
  635. }
  636. .inspector {
  637. display: grid;
  638. align-content: start;
  639. gap: 14px;
  640. max-height: calc(100vh - 210px);
  641. overflow: auto;
  642. }
  643. .panel {
  644. padding: 16px;
  645. }
  646. .panel-title {
  647. display: flex;
  648. align-items: center;
  649. justify-content: space-between;
  650. gap: 12px;
  651. margin-bottom: 12px;
  652. }
  653. .panel h2 {
  654. margin: 0;
  655. font-size: 18px;
  656. font-weight: 950;
  657. }
  658. .player-screen {
  659. margin-bottom: 14px;
  660. border-radius: 18px;
  661. padding: 14px;
  662. background: linear-gradient(180deg, #07143b, #151246);
  663. color: #e8fbff;
  664. border: 1px solid rgba(141, 247, 255, 0.44);
  665. box-shadow: inset 0 0 24px rgba(0, 217, 255, 0.15), 0 0 24px rgba(125, 92, 255, 0.18);
  666. }
  667. .player-screen span,
  668. .player-screen strong {
  669. display: block;
  670. }
  671. .player-screen span {
  672. color: var(--mint);
  673. font-size: 11px;
  674. letter-spacing: 0.14em;
  675. font-weight: 900;
  676. }
  677. .player-screen strong {
  678. margin-top: 4px;
  679. font-size: 20px;
  680. }
  681. .kv {
  682. display: grid;
  683. gap: 12px;
  684. margin: 0;
  685. }
  686. .kv div {
  687. display: grid;
  688. grid-template-columns: 86px minmax(0, 1fr);
  689. gap: 8px;
  690. }
  691. .kv dt {
  692. color: var(--muted);
  693. font-weight: 800;
  694. }
  695. .kv dd {
  696. margin: 0;
  697. font-weight: 950;
  698. word-break: break-all;
  699. }
  700. .tool-list,
  701. .trace-list {
  702. display: grid;
  703. gap: 9px;
  704. }
  705. .tool-item,
  706. .trace-item {
  707. border: 1px solid rgba(255, 255, 255, 0.76);
  708. border-radius: 18px;
  709. padding: 11px;
  710. background: rgba(255, 255, 255, 0.7);
  711. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  712. }
  713. .tool-item strong,
  714. .trace-item strong {
  715. display: block;
  716. font-size: 14px;
  717. }
  718. .tool-item span,
  719. .trace-item span {
  720. display: block;
  721. color: var(--muted);
  722. font-size: 12px;
  723. margin-top: 4px;
  724. word-break: break-word;
  725. line-height: 1.5;
  726. }
  727. .phase-error strong {
  728. color: var(--danger);
  729. }
  730. @media (max-width: 1180px) {
  731. .top-nav {
  732. grid-template-columns: 1fr;
  733. }
  734. .session-card {
  735. justify-self: stretch;
  736. }
  737. .nav {
  738. justify-content: flex-start;
  739. overflow-x: auto;
  740. }
  741. .hero,
  742. .workspace {
  743. grid-template-columns: 1fr;
  744. }
  745. .hero-panel {
  746. min-height: 260px;
  747. }
  748. .feature-strip {
  749. grid-template-columns: repeat(2, minmax(0, 1fr));
  750. }
  751. .inspector {
  752. max-height: none;
  753. }
  754. }
  755. @media (max-width: 720px) {
  756. .top-nav {
  757. padding: 12px;
  758. }
  759. .shell {
  760. width: min(100% - 20px, 1500px);
  761. padding-top: 12px;
  762. }
  763. .hero-copy {
  764. padding: 22px;
  765. }
  766. .hero h1 {
  767. font-size: 34px;
  768. }
  769. .feature-strip {
  770. grid-template-columns: 1fr;
  771. }
  772. .chat-card {
  773. min-height: 620px;
  774. }
  775. .message-row,
  776. .message-row.user {
  777. grid-template-columns: 1fr;
  778. }
  779. .message-row .avatar,
  780. .message-row.user .avatar {
  781. display: none;
  782. }
  783. .message-row.user .bubble,
  784. .message-row.user .avatar {
  785. grid-column: auto;
  786. grid-row: auto;
  787. }
  788. }