:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #173b63;
  background: #f2f7ff;
}

* { box-sizing: border-box; }
html, body { min-width: 320px; min-height: 100%; margin: 0; }
body { min-height: 100vh; background-color: #f2f7ff; background-image: linear-gradient(#dce8f6 1px, transparent 1px), linear-gradient(90deg, #dce8f6 1px, transparent 1px); background-size: 52px 52px; }
button, textarea { font: inherit; }
button { cursor: pointer; }

.old-chat-page { display: flex; flex-direction: column; min-height: 100vh; overflow-x: hidden; }
.old-header { width: min(1180px, calc(100% - 48px)); height: 90px; display: flex; align-items: center; justify-content: space-between; margin: 0 auto; border-bottom: 1px solid #cdddf0; }
.old-brand { display: inline-flex; align-items: center; gap: 12px; color: #1b4672; text-decoration: none; font-size: 18px; font-weight: 800; }
.old-brand-mark { display: grid; width: 40px; height: 40px; place-items: center; color: #fff; border-radius: 12px; background: #e3645b; box-shadow: 3px 3px 0 #f4bd70; font-size: 14px; font-weight: 800; }
.old-status { display: inline-flex; align-items: center; gap: 9px; color: #587590; font-size: 15px; font-weight: 650; }
.old-status span { width: 10px; height: 10px; border-radius: 50%; background: #4caf7a; box-shadow: 0 0 0 4px #4caf7a22; }
.old-main { width: min(1180px, calc(100% - 48px)); flex: 1; display: flex; align-items: center; justify-content: center; margin: 0 auto; padding: 42px 0 188px; }
.old-chat { width: min(840px, 100%); min-height: 480px; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; margin: 0 auto; padding: 36px 0 24px; }
.old-welcome { display: flex; flex-direction: column; align-items: center; text-align: center; margin: auto; }
.old-eyebrow { margin: 0 0 16px; color: #5d7c9d; font-size: 14px; font-weight: 700; letter-spacing: 3px; }
.old-emblem { position: relative; width: 92px; height: 92px; display: grid; place-items: center; margin-bottom: 24px; }
.old-emblem::before, .old-emblem::after { content: ""; position: absolute; width: 76px; height: 76px; border: 2px solid #7eafd8; border-radius: 18px; }
.old-emblem::before { transform: translate(-11px, -7px); }
.old-emblem::after { transform: translate(11px, 8px); border-color: #f0ad63; }
.old-emblem span { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; color: #fff; border-radius: 16px; background: #e3645b; box-shadow: 4px 4px 0 #f4bd70; font-size: 22px; font-weight: 800; transform: rotate(45deg); }
.old-emblem span i { font-style: normal; transform: rotate(-45deg); }
.old-welcome h1 { max-width: 820px; margin: 0; color: #183f6a; font-size: clamp(35px, 5vw, 58px); font-weight: 850; line-height: 1.2; letter-spacing: 1px; }
.old-rule { width: 58px; height: 5px; margin: 26px 0 17px; border-radius: 5px; background: #e99552; }
.old-slogan { margin: 12px 0 0; color: #5c7c99; font-size: 18px; font-weight: 600; }
.message { display: flex; gap: 12px; width: 100%; margin: 0 0 24px; line-height: 1.75; }
.message.user { flex-direction: row-reverse; }
.avatar { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; font-size: 12px; font-weight: 800; }
.message.user .avatar { color: #2f67a5; background: #dbeaff; }.message.assistant .avatar { color: #fff; background: #e3645b; }
.message-content { min-width: 0; max-width: 78%; padding: 2px 4px; color: #234c74; font-size: 17px; white-space: pre-wrap; overflow-wrap: anywhere; }
.message.user .message-content { padding: 12px 16px; color: #173b63; border: 1px solid #c9ddf3; border-radius: 16px 4px 16px 16px; background: #e6f0fb; }
.message.assistant .message-content { max-width: 100%; }.error { color: #b74842; }
.cursor { display: inline-block; width: 7px; height: 17px; margin-left: 2px; vertical-align: -1px; background: #e3645b; animation: blink .8s infinite; } @keyframes blink { 50% { opacity: 0; } }
.old-composer-wrap { position: fixed; right: 0; bottom: 0; left: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; padding: 18px 24px 88px; background: linear-gradient(transparent, #f2f7ff 30px); }
.old-composer { width: min(860px, calc(100% - 70px)); min-height: 72px; display: flex; align-items: center; gap: 12px; padding: 12px 13px 12px 21px; border: 2px solid #b8cfe7; border-radius: 16px; background: rgba(255,255,255,.97); box-shadow: 0 12px 30px #406e9c1c; }
.old-composer-note { width: min(860px, calc(100% - 70px)); margin: 11px 0 0; color: #7b92a8; font-size: 13px; font-weight: 550; text-align: center; }
.old-composer:focus-within { border-color: #e3645b; box-shadow: 0 0 0 4px #e3645b1a, 0 12px 30px #406e9c1c; }
.old-composer textarea { flex: 1; min-height: 36px; max-height: 160px; padding: 5px 0; resize: none; outline: 0; color: #21476e; border: 0; background: transparent; font-size: 17px; line-height: 1.5; }
.old-composer textarea::placeholder { color: #8fa7be; }
.old-composer button { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; padding: 0 0 4px; color: #fff; border: 0; border-radius: 12px; background: #e3645b; box-shadow: 2px 2px 0 #f4bd70; font-size: 30px; line-height: 1; }.old-composer button:hover { background: #ce5048; }.old-composer button:disabled { color: #a7bac9; background: #e3ebf3; box-shadow: none; }
.old-reset { position: absolute; right: max(24px, calc((100% - 1140px) / 2)); bottom: 8px; padding: 3px 0; color: #6984a0; border: 0; background: transparent; font-size: 13px; }.old-reset:hover { color: #e3645b; }

@media (max-width: 700px) {
  body { background-size: 35px 35px; }.old-header, .old-main { width: calc(100% - 32px); }.old-header { height: 74px; }.old-brand { gap: 9px; font-size: 16px; }.old-brand-mark { width: 36px; height: 36px; border-radius: 10px; font-size: 12px; }.old-status { font-size: 12px; }.old-status span { width: 8px; height: 8px; }.old-main { padding: 18px 0 160px; }.old-chat { min-height: 395px; padding: 22px 0 16px; }.old-welcome { margin: auto; }.old-emblem { transform: scale(.84); margin-bottom: 11px; }.old-eyebrow { margin-bottom: 12px; font-size: 12px; letter-spacing: 2px; }.old-slogan { font-size: 16px; }.message { gap: 10px; margin-bottom: 20px; }.message-content { max-width: 86%; font-size: 16px; }.message.user .message-content { padding: 11px 14px; }.old-composer-wrap { padding: 12px 12px 76px; }.old-composer { width: 100%; min-height: 64px; padding-left: 15px; border-radius: 13px; }.old-composer textarea { font-size: 16px; }.old-composer-note { width: 100%; margin-top: 9px; font-size: 12px; text-align: center; }.old-reset { right: 15px; bottom: 7px; }
}
