* { box-sizing: border-box; }
:root { --glass: rgba(255,255,255,.08); --line: rgba(255,255,255,.14); --text: #edf6ff; --muted: #9db2c8; --accent: #39d5ff; --green: #25e5a5; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; color: var(--text); background: radial-gradient(circle at top, #113b66 0, #07111f 45%, #03070d 100%); min-height: 100vh; }
.app { max-width: 760px; margin: 0 auto; padding: 18px 14px 34px; position: relative; z-index: 2; }
.glass { background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05)); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 45px rgba(0,0,0,.28); backdrop-filter: blur(16px); }
.hero { padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.label { font-size: 11px; letter-spacing: 2px; color: var(--accent); font-weight: 700; }
h1, h2, p { margin: 0; } h1 { font-size: 26px; margin-top: 6px; } h2 { font-size: 20px; margin-top: 4px; }
.hero p, .stat p { color: var(--muted); margin-top: 8px; }
.avatar { width: 64px; height: 64px; border-radius: 22px; display: grid; place-items: center; background: linear-gradient(135deg, #2bd4ff, #2bffbf); color: #06101d; font-weight: 900; font-size: 30px; }
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 14px 0; }
.stat { padding: 16px 12px; text-align: center; } .stat span { display: block; font-size: 23px; font-weight: 900; color: var(--green); }
.panel { padding: 16px; margin-bottom: 14px; } .panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.small { border: 1px solid var(--line); border-radius: 14px; color: var(--text); background: rgba(255,255,255,.08); padding: 8px 12px; }
.timeline { display: flex; flex-direction: column; gap: 10px; }
.item { display: grid; grid-template-columns: 72px 1fr; gap: 12px; border: 1px solid var(--line); border-radius: 18px; padding: 13px; background: rgba(0,0,0,.16); }
.time { color: var(--accent); font-weight: 900; font-size: 14px; }
.title { font-size: 15px; font-weight: 800; line-height: 1.35; }
.place { color: var(--muted); font-size: 13px; margin-top: 6px; }
.empty { color: var(--muted); text-align: center; padding: 28px 10px; }
.actions { display: grid; gap: 10px; margin: 14px 0; }
button { border: 0; cursor: pointer; font-weight: 800; font-size: 15px; }
.primary, .danger, .ghost { width: 100%; padding: 15px; border-radius: 18px; }
.primary { background: linear-gradient(135deg, #25e5a5, #39d5ff); color: #06101d; }
.danger { background: linear-gradient(135deg, #ff5d73, #ffb36b); color: #16070a; }
.ghost { background: rgba(255,255,255,.08); color: var(--text); border: 1px solid var(--line); margin-top: 8px; }
textarea { width: 100%; min-height: 128px; resize: vertical; border: 1px solid var(--line); border-radius: 18px; padding: 13px; background: rgba(0,0,0,.22); color: var(--text); outline: none; margin: 12px 0; font-size: 15px; }
.hidden { display: none; }
.toast { position: fixed; left: 14px; right: 14px; bottom: 20px; z-index: 10; padding: 14px; border-radius: 18px; background: rgba(5,12,22,.95); border: 1px solid var(--line); text-align: center; box-shadow: 0 14px 40px rgba(0,0,0,.35); }
.bg-orb { position: fixed; border-radius: 50%; filter: blur(35px); opacity: .35; z-index: 1; }
.orb1 { width: 220px; height: 220px; background: #2bd4ff; top: -70px; right: -60px; }
.orb2 { width: 180px; height: 180px; background: #25e5a5; bottom: 40px; left: -70px; }
