        
        :root {
            --bg-primary: #eeebe4;
            --bg-secondary: #e7e2d7;
            --text-primary: #1f1e1c;
            --text-secondary: #6b6760;
            --text-inverse: #fbfaf7;
            --accent-primary: #1f1e1c;
            --accent-secondary: #4a4740;
            --accent-hover: #3a3936;
            --accent-like: #c0392b;
            --accent-repost: #27ae60;
            --link-color: #5b7a9e;
            --border-color: #e4e0d6;
            --border-subtle: #ddd7c9;
            --volume-track-bg: rgba(0, 0, 0, .15);
            --block-bg: #fbfaf7;
            --modal-bg: var(--block-bg);
            --block-bg-secondary: #f4f1ea;
            --block-hover-bg: #f4f1ea;
            --chatWindow: #f4f1ea;
            --bg-hover: rgba(0, 0, 0, .04);
            --bg-active: rgba(0, 0, 0, .08);
            --tab-active-bg: #f4f1ea;
            --settings-tab-active-bg: var(--block-bg);
            --toggle-active-bg: #1f1e1c;
            --glass-bg: rgba(251, 250, 247, .82);
            --nav-gradient: linear-gradient(to bottom, transparent 0%, rgba(238, 235, 228, .3) 30%, rgba(238, 235, 228, .85) 100%);
            --btn-primary-bg: #1f1e1c;
            --btn-primary-text: #fbfaf7;
            --shadow-elevated: 0 1px 3px rgba(0, 0, 0, .04);
            --poll-progress-color: rgba(0, 0, 0, .08);
            --poll-selected-progress-color: #1f1e1c;
            --poll-inverted-text: #fbfaf7;
            --transition-normal: .3s ease;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-full: 9999px;
            --spacing-xs: 4px;
            --spacing-sm: 8px;
            --spacing-md: 16px;
            --spacing-lg: 24px;
            --spacing-2xl: 48px;
            --sidebar-width: 200px;
            --sidebar-gap: 36px;
            --content-max-width: 650px;
            --error-color: #c0392b;
            --accent-color: #1f1e1c;
            --color-error: #c0392b;
        }

        [data-theme="dark"] {
            --bg-primary: #1a1816;
            --bg-secondary: #2a2724;
            --text-primary: #e8e4db;
            --text-secondary: #a29c8e;
            --text-inverse: #1a1816;
            --accent-primary: #e8e4db;
            --accent-secondary: #a29c8e;
            --accent-hover: #fbfaf7;
            --accent-like: #e74c3c;
            --accent-repost: #2ecc71;
            --link-color: #8faec4;
            --border-color: rgba(255, 255, 255, .1);
            --border-subtle: rgba(255, 255, 255, .05);
            --volume-track-bg: rgba(255, 255, 255, .2);
            --block-bg: #242220;
            --modal-bg: #1e1c1a;
            --block-bg-secondary: #2a2724;
            --block-hover-bg: #2a2724;
            --chatWindow: #1a1816;
            --bg-hover: rgba(255, 255, 255, .06);
            --bg-active: rgba(255, 255, 255, .1);
            --tab-active-bg: rgba(255, 255, 255, .06);
            --settings-tab-active-bg: var(--block-bg);
            --toggle-active-bg: #e8e4db;
            --glass-bg: rgba(26, 24, 22, .82);
            --nav-gradient: linear-gradient(to bottom, transparent 0%, rgba(26, 24, 22, .3) 30%, rgba(26, 24, 22, .85) 100%);
            --btn-primary-bg: #e8e4db;
            --btn-primary-text: #1a1816;
            --shadow-elevated: 0 4px 16px rgba(0, 0, 0, .3);
            --poll-progress-color: rgba(255, 255, 255, .1);
            --poll-selected-progress-color: #e8e4db;
            --poll-inverted-text: #1a1816;
        }

        *,
        *:before,
        *:after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scrollbar-gutter: stable;
        }

        body {
            font-family: 'Onest', 'Inter', -apple-system, BlinkMacSystemFont, SF Pro Display, SF Pro Text, Helvetica Neue, sans-serif;
            line-height: 1.5;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            touch-action: pan-x pan-y;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        ul, ol {
            list-style: none;
        }

        img, picture, video, canvas, svg {
            display: block;
            max-width: 100%;
        }

        input, button, textarea, select {
            font: inherit;
            color: inherit;
        }

        button {
            cursor: pointer;
            background: none;
            border: none;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: 1.2;
        }

        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--text-secondary);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--text-primary);
        }

        * {
            scrollbar-width: thin;
            scrollbar-color: var(--text-secondary) var(--bg-primary);
        }

        @keyframes flash-highlight-light {
            0% { background-color: #00000014; }
            to { background-color: transparent; }
        }

        @keyframes flash-highlight-dark {
            0% { background-color: #ffffff1f; }
            to { background-color: transparent; }
        }

        @keyframes spin {
            0% { transform: rotate(0); }
            to { transform: rotate(360deg); }
        }

        @keyframes Uchh {
            0% { transform: rotate(0); }
            to { transform: rotate(360deg); }
        }

        @keyframes XMs9 {
            0% { opacity: 0; transform: scale(1.2); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes laO4 {
            0% { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes HQfi {
            0% { transform: translateY(100%); }
            to { transform: translateY(0); }
        }

        @keyframes v8ls {
            0% { transform: translateY(0); }
            to { transform: translateY(100%); }
        }

        @keyframes C503 {
            0% { opacity: 1; }
            to { opacity: 0; }
        }

        @keyframes azNY {
            0% { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes LxyN {
            0%, to { filter: drop-shadow(0 0 4px rgba(144, 162, 255, .2)); }
            50% { filter: drop-shadow(0 0 16px rgb(144, 162, 255)); }
        }

        @keyframes vKe2 {
            0%, to { filter: drop-shadow(0 0 4px rgba(144, 162, 255, .2)); }
            50% { filter: drop-shadow(0 0 16px rgb(144, 162, 255)); }
        }

        @keyframes lyIL {
            0% { transform: scale(1); }
            25% { transform: scale(1.3); }
            50% { transform: scale(.9); }
            to { transform: scale(1); }
        }

        @keyframes rggE {
            0% { transform: scale(1); }
            25% { transform: scale(.75); }
            50% { transform: scale(1.05); }
            to { transform: scale(1); }
        }

        @keyframes UzEj {
            0% { transform: scale(1); }
            25% { transform: scale(1.3); }
            50% { transform: scale(.9); }
            to { transform: scale(1); }
        }

        @keyframes xzg1 {
            0% { transform: translateY(0); }
            to { transform: translateY(-1em); }
        }

        @keyframes IU3B {
            0% { transform: translateY(-1em); }
            to { transform: translateY(0); }
        }

        @keyframes UZLb {
            0% { opacity: 1; }
            50% { opacity: .3; }
            to { opacity: 0; }
        }

        @keyframes bAjL {
            0% { opacity: 0; }
            50% { opacity: .3; }
            to { opacity: 1; }
        }

        @keyframes BrjB {
            0% { opacity: 0; transform: scale(.9) translateY(-4px); }
            to { opacity: 1; transform: scale(1) translateY(0); }
        }

        @keyframes efi7 {
            0% { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes FWYD {
            0% { opacity: 1; transform: translateY(0); }
            to { opacity: 0; transform: translateY(-10px); }
        }

        @keyframes FyGF {
            0% { opacity: 0; transform: translate(100%); }
            to { opacity: 1; transform: translate(0); }
        }

        @keyframes uvIq {
            0% { opacity: 0; transform: translateY(4px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes wpLb {
            to { transform: translate(100%); }
        }

        @keyframes EUqN {
            to { transform: translate(100%); }
        }

        @keyframes yaUK {
            to { transform: rotate(360deg); }
        }

        @keyframes m9VE {
            0% { opacity: 0; transform: scale(.9); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes ytiv {
            0% { opacity: 0; transform: scale(.96); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes bWRW {
            0% { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes DtI0 {
            0% { left: -100%; }
            60%, to { left: 150%; }
        }

        @keyframes dBZJ {
            0% { transform: scale(.5); }
            50% { transform: scale(1.3); }
            to { transform: scale(1); }
        }

        @keyframes VycF {
            0% { transform: scale(1); }
            25% { transform: scale(1.3); }
            50% { transform: scale(.9); }
            to { transform: scale(1); }
        }

        @keyframes WUct {
            0% { opacity: 0; transform: scale(.9); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes La9y {
            0% { opacity: 1; transform: scale(1); }
            to { opacity: 0; transform: scale(.9); }
        }

        @keyframes Bh6h {
            0% { opacity: 0; transform: translate(-20px); }
            to { opacity: 1; transform: translate(0); }
        }

        @keyframes GNxk {
            0% { opacity: 0; transform: translate(20px); }
            to { opacity: 1; transform: translate(0); }
        }

        @keyframes zsLd {
            0% { opacity: 0; transform: translateY(-100%); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fsRE {
            0% { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (prefers-reduced-motion: reduce) {
            .wpLb:after { animation: none; }
            .EUqN:after { animation: none; }
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }

        .gFyu {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-weight: 500;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .gFyu:disabled {
            opacity: .5;
            cursor: not-allowed;
        }

        .gFyu:not(:disabled):hover {
            opacity: .9;
        }

        .zj0p {
            background: var(--btn-primary-bg);
            color: var(--btn-primary-text);
        }

        .GzxR {
            background: var(--bg-secondary);
            color: var(--text-primary);
        }

        .KVfm {
            background: transparent;
            color: var(--text-primary);
        }

        .KVfm:not(:disabled):hover {
            background: var(--bg-secondary);
        }

        .PrrC {
            background: var(--accent-primary);
            color: #fff;
        }

        .lwC0 {
            background: var(--error-color, #ef4444);
            color: #fff;
        }

        .MXIN {
            height: 32px;
            padding: 0 12px;
            font-size: 13px;
            border-radius: 16px;
        }

        .mbW4 {
            height: 40px;
            padding: 0 20px;
            font-size: 14px;
            border-radius: 20px;
        }

        .WVLz {
            height: 48px;
            padding: 0 24px;
            font-size: 16px;
            border-radius: 24px;
        }

        .wXvg {
            width: 100%;
        }

        .h8t0 {
            position: relative;
            flex-shrink: 0;
            border-radius: 50%;
            background-color: var(--bg-primary);
        }

        @media (max-width: 1173px) {
            .h8t0 { background-color: var(--block-bg); }
        }

        .h8t0.Z4Ww { width: 28px; height: 28px; }
        .h8t0.Z4Ww .yCNy { font-size: 12px; }
        .h8t0.Z4Ww .aVX1 { width: 8px; height: 8px; bottom: -2px; right: -2px; }

        .h8t0.tpQJ { width: 36px; height: 36px; }
        .h8t0.tpQJ .yCNy { font-size: 16px; }

        @media (min-width: 1174px) {
            .h8t0.tpQJ { width: 40px; height: 40px; }
        }

        .h8t0.yAZx { width: 40px; height: 40px; }
        .h8t0.yAZx .yCNy { font-size: 18px; }

        .h8t0.VtFa { width: 100px; height: 100px; border: 6px solid var(--bg-primary); background: var(--bg-primary); }
        .h8t0.VtFa .yCNy { font-size: 40px; }
        .h8t0.VtFa .aVX1 { width: 22px; height: 22px; border-width: 4px; border-color: var(--bg-primary); bottom: 4px; right: 4px; }

        @media (min-width: 1174px) {
            .h8t0.VtFa { width: 120px; height: 120px; }
        }

        .h8t0.vzXc { width: 120px; height: 120px; border: 6px solid var(--bg-primary); background: var(--bg-primary); }
        .h8t0.vzXc .yCNy { font-size: 48px; }

        @media (min-width: 1174px) {
            .h8t0.vzXc { width: 150px; height: 150px; }
        }

        .yCNy {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            color: #fff;
            font-weight: 600;
            border-radius: 50%;
        }

        .aVX1 {
            position: absolute;
            border-radius: 50%;
            background-color: #22c55e;
            border: 2px solid var(--block-bg);
            width: 12px;
            height: 12px;
            bottom: -1px;
            right: -1px;
        }

        .lkx7 {
            display: flex;
            align-items: center;
            gap: 6px;
            font-weight: 500;
            color: var(--text-primary);
            line-height: 1;
            min-width: 0;
        }

        .lkx7 .drJg {
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .lkx7.DguR { font-size: 14px; }

        @media (min-width: 1174px) {
            .lkx7.DguR { font-size: 15px; }
        }

        .lkx7.x67X { font-size: 12px; gap: 4px; }

        .Cv1E {
            --toggle-bg: color-mix(in srgb, var(--text-secondary) 30%, transparent);
            --toggle-bg-active: #34c759;
            --toggle-knob: white;
            --toggle-knob-active: white;
            position: relative;
            width: 44px;
            height: 24px;
            background: var(--toggle-bg);
            border-radius: 12px;
            cursor: pointer;
            border: none;
            padding: 0;
            flex-shrink: 0;
        }

        .Cv1E:after {
            content: "";
            position: absolute;
            top: 2px;
            left: 2px;
            width: 20px;
            height: 20px;
            background: var(--toggle-knob);
            border-radius: 50%;
            transition: transform .2s ease;
        }

        .Cv1E.DfQ9 {
            background: var(--toggle-bg-active);
        }

        .Cv1E.DfQ9:after {
            transform: translate(20px);
            background: var(--toggle-knob-active);
        }

        .HQer {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            -webkit-user-select: none;
            user-select: none;
        }

        .WdRK { display: none; }

        .rzXl {
            width: 20px;
            height: 20px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            flex-shrink: 0;
            position: relative;
            transition: border-color .2s ease, background .2s ease;
        }

        .rzXl:after {
            content: "";
            position: absolute;
            top: 2px;
            left: 6px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
            opacity: 0;
            transition: opacity .2s ease;
        }

        .WdRK:checked + .rzXl {
            background: var(--accent-primary);
            border-color: var(--accent-primary);
        }

        .WdRK:checked + .rzXl:after { opacity: 1; }

        .HQer:not(.bg5e):hover .rzXl { border-color: var(--accent-primary); }

        .EWCQ {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            background: transparent;
            color: var(--text-primary);
            font-size: 15px;
            outline: none;
            transition: border-color .2s ease;
        }

        .EWCQ:focus { border-color: var(--accent-primary); }
        .EWCQ::placeholder { color: var(--text-secondary); }

        .P8kh {
            width: 100%;
            background: var(--bg-primary);
            border: none;
            border-radius: 12px;
            font-size: 15px;
            color: var(--text-primary);
            outline: none;
        }

        .P8kh::placeholder { color: var(--text-secondary); }
        .P8kh.d4az { height: 40px; padding: 0 14px; font-size: 15px; }

        .awzv {
            background: transparent;
            border: 1px solid var(--border-color);
        }

        .awzv:focus { border-color: var(--accent-primary); }

        .dYjw {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            background: transparent;
            color: var(--text-primary);
            font-size: 14px;
            outline: none;
            transition: border-color .2s ease;
        }

        .dYjw:focus { border-color: var(--accent-primary); }
        .dYjw::placeholder { color: var(--text-secondary); }

        .vF6r {
            width: 100%;
            min-height: 80px;
            padding: 14px;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            background: var(--bg-secondary);
            color: var(--text-primary);
            font-size: 14px;
            font-family: inherit;
            resize: vertical;
            transition: border-color .2s ease;
        }

        .vF6r::placeholder { color: var(--text-secondary); }
        .vF6r:focus { outline: none; border-color: var(--accent-primary); }

        .QDKj {
            position: relative;
            display: flex;
            align-items: center;
        }

        .qQmB {
            position: absolute;
            left: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            pointer-events: none;
        }

        .YuEx {
            width: 100%;
            padding: 16px 20px 16px 52px;
            border: none;
            border-radius: 24px;
            background-color: var(--block-bg);
            color: var(--text-primary);
            font-size: 15px;
            outline: none;
            transition: background-color .2s ease;
        }

        .YuEx::placeholder { color: var(--text-secondary); }
        .YuEx:focus { background-color: var(--block-hover-bg); }

        .ti2o {
            cursor: pointer;
            -webkit-tap-highlight-color: transparent;
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 16px;
        }

        @media (min-width: 1174px) {
            .ti2o {
                gap: 18px;
                padding: 24px;
                border-radius: 36px;
                background-color: var(--block-bg);
            }
        }

        .O6e2.ms2J { display: flex; gap: 10px; }
        .O6e2 .kMBE { align-self: flex-start; }

        .O6e2 .UP4C {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .Knv1 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 4px;
        }

        .frJz {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .HCUc {
            color: var(--text-primary);
            font-size: 15px;
            line-height: 1.5;
            white-space: pre-wrap;
            word-wrap: break-word;
            overflow: hidden;
        }

        .HCUc.R8Vx {
            position: relative;
            max-height: 120px;
        }

        .HCUc.R8Vx:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: linear-gradient(to bottom, transparent, var(--block-bg));
            pointer-events: none;
        }

        @media (max-width: 1173px) {
            .HCUc.R8Vx:after {
                background: linear-gradient(to bottom, transparent, var(--bg-primary));
            }
        }

        .oHFS {
            display: block;
            margin-top: 8px;
            padding: 0;
            background: none;
            border: none;
            color: var(--accent-primary);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: opacity .2s ease;
        }

        .oHFS:hover { opacity: .8; }

        .y3cQ {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: -12px;
        }

        .lvtz {
            display: flex;
            align-items: center;
        }

        .rJut {
            display: flex;
            align-items: center;
            gap: 6px;
            border-radius: var(--radius-full, 9999px);
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 100%;
            font-variant-numeric: tabular-nums;
            padding: 8px 12px;
            border: none;
            cursor: pointer;
            background: transparent;
            transition: background-color .15s ease;
        }

        @media (min-width: 1174px) {
            .rJut { font-size: 14px; }
        }

        .rJut svg {
            flex-shrink: 0;
            transition: transform .2s ease;
            width: 18px;
            height: 18px;
        }

        .rJut:hover:not(.oTLi) { background: var(--bg-hover); }
        .rJut:active svg { transform: scale(.8); }

        .rJut.EynT { color: var(--accent-like); }
        .rJut.EynT svg { animation: lyIL .4s ease; }
        .rJut.Y3br { color: var(--accent-repost); }
        .rJut.Ce5Q { color: #ffdc5f; }

        .afzk { display: flex; flex-direction: column; }

        .E1sC {
            display: flex;
            position: relative;
        }

        .PPPR {
            position: relative;
            flex-shrink: 0;
            margin-right: 12px;
        }

        .VqgS {
            position: absolute;
            bottom: 0;
            top: 52px;
            left: 50%;
            transform: translate(-50%);
            width: 2px;
            background-color: var(--border-color);
            border-radius: 1px;
            height: calc(100% - 64px);
        }

        .tUxD {
            flex: 1;
            min-width: 0;
        }

        .E1sC:not(:last-child) .tUxD { padding-bottom: 16px; }

        .UOms {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            margin-bottom: 4px;
        }

        .t38q {
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            overflow: hidden;
        }

        .weBN {
            color: var(--text-secondary);
            font-size: 12px;
        }

        .Oo9v {
            overflow: hidden;
            color: var(--text-primary);
            font-size: 14px;
            line-height: 1.4;
        }

        .r3lN {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 4px;
        }

        .yhTa {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            color: var(--text-secondary);
            border: none;
            cursor: pointer;
            padding: 0;
            background: transparent;
            transition: color .15s ease;
        }

        .yhTa:hover { color: var(--text-primary); }
        .yhTa.ULeo { color: var(--accent-like); }
        .yhTa.ULeo svg { animation: VycF .4s ease; }

        .xnNi {
            width: 400px;
            max-width: calc(100vw - 32px);
            max-height: calc(100vh - 32px);
            overflow-y: auto;
            background: var(--modal-bg);
            border-radius: 36px;
            box-shadow: var(--shadow-elevated);
            display: flex;
            flex-direction: column;
        }

        .sLKf {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 1;
        }

        .O3Zb {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .WkdY {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-secondary);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            color: var(--text-secondary);
            transition: color .2s ease, background .2s ease;
        }

        .WkdY:hover {
            background: var(--bg-hover);
            color: var(--text-primary);
        }

        .AJoN {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 340px;
        }

        .cBIB {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
            text-align: center;
        }

        .nUVt {
            font-size: 14px;
            color: var(--text-secondary);
            margin: 0;
            text-align: center;
            line-height: 1.5;
        }

        .nUVt strong { color: var(--text-primary); }

        .EKn7 {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 4px;
        }

        .rZ5K {
            min-width: 180px;
            padding: 6px;
            background: var(--block-bg);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            box-shadow: 0 8px 32px #00000040;
        }

        .ZLFG {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
            padding: 12px 14px;
            border: none;
            background: transparent;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 450;
            text-align: left;
            cursor: pointer;
            border-radius: 10px;
            transition: background .15s ease;
        }

        .ZLFG:hover { background: var(--bg-hover); }
        .ZLFG:active { background: var(--bg-active); }
        .ZLFG.GTUP, .ZLFG.GTUP .FNFd { color: var(--accent-like); }

        .FNFd {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--text-secondary);
            width: 20px;
        }

        .FreN { flex: 1; }

        .IZRk {
            height: 1px;
            margin: 6px 8px;
            background: var(--border-color);
        }

        .M1hR {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 14px 18px;
            background: var(--block-bg);
            border-radius: 12px;
            filter: drop-shadow(0px 0px 64px var(--bg-primary));
            min-width: 240px;
        }

        .M1hR.JCjz { background: #22c55e; }
        .M1hR.JCjz .yX6z, .M1hR.JCjz .GujV { color: #fff; }

        .M1hR.rRh7 { background: #ef4444; }
        .M1hR.rRh7 .yX6z, .M1hR.rRh7 .GujV { color: #fff; }

        .yX6z {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            width: 20px;
            height: 20px;
        }

        .GujV {
            flex: 1;
            font-size: 14px;
            line-height: 1.4;
        }

        .hoen {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding: 20px;
            cursor: pointer;
            background: var(--block-bg);
            border-radius: 36px;
            min-width: 280px;
            transition: background .15s ease;
        }

        .hoen:hover {
            background: var(--block-hover-bg);
        }

        .hoen .S9Lr {
            display: flex;
            align-items: center;
            gap: 16px;
            min-width: 0;
            overflow: hidden;
        }

        .hoen .S9Lr .K5PO {
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 0;
            overflow: hidden;
        }

        .hoen .S9Lr .K5PO .oH2p {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .hoen .S9Lr .K5PO .gkAw { color: var(--text-secondary); }

        .hoen .S9Lr .K5PO .WPTa {
            color: var(--text-secondary);
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 13px;
        }

        .hoen.uM0Z { border-left: 3px solid var(--accent-primary); }
        .hoen.PObP { border-left: 3px solid #22c55e; }
        .hoen.TSTP { border-left: 3px solid #f59e0b; }
        .hoen.r6fv { border-left: 3px solid #ef4444; }

        .EUqN {
            position: relative;
            overflow: hidden;
            background-color: var(--bg-hover);
            border-radius: 6px;
        }

        .EUqN:after {
            content: "";
            position: absolute;
            inset: 0;
            transform: translate(-100%);
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .06) 50%, transparent 100%);
            animation: EUqN 1.3s ease-in-out infinite;
            animation-delay: var(--shimmer-delay, 0s);
        }

        .z12B {
            position: relative;
            width: 100%;
            height: 64px;
            display: flex;
            align-items: center;
            background: var(--glass-bg);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            border-radius: 32px;
            pointer-events: auto;
            padding: 6px;
            box-shadow: var(--shadow-elevated);
        }

        .z12B:before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(to bottom, #ffffff40, #ffffff0d);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .Hf07 {
            position: relative;
            z-index: 1;
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px 0;
            background: transparent;
            border: none;
            cursor: pointer;
            color: var(--text-secondary);
            transition: color .2s ease;
        }

        .cGGZ {
            font-size: 10px;
            font-weight: 500;
        }

        .Hf07.q2p1 {
            color: var(--text-primary);
        }

        .d4NT {
            position: relative;
            order: -1;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--glass-bg);
            -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
            border: none;
            border-radius: 32px;
            cursor: pointer;
            pointer-events: auto;
            color: var(--text-primary);
            box-shadow: var(--shadow-elevated);
        }

        .d4NT:before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            padding: 1px;
            background: linear-gradient(to bottom, #ffffff40, #ffffff0d);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
        }

        .DQTK {
            position: absolute;
            top: -6px;
            right: -10px;
            min-width: 16px;
            height: 16px;
            padding: 0 4px;
            font-size: 10px;
            font-weight: 600;
            line-height: 16px;
            text-align: center;
            color: #fff;
            background-color: var(--accent-like);
            border-radius: 8px;
        }

        .Z0Vy {
            --padding: 4px;
            position: relative;
            display: flex;
            background: var(--glass-bg);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            border-radius: 9999px;
            padding: var(--padding);
        }

        .HDLI {
            position: relative;
            z-index: 1;
            flex: 1;
            padding: 8px 0;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
            background: transparent;
            border: none;
            border-radius: 9999px;
            cursor: pointer;
            transition: color .2s ease;
        }

        .vVfx { color: var(--text-primary); }

        .FWpb {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            color: var(--text-primary);
            cursor: pointer;
            transition: all .2s ease;
            font: inherit;
            width: 100%;
            text-align: left;
            font-size: 15px;
            font-weight: 500;
            background: transparent;
        }

        .FWpb:hover { border-color: var(--text-secondary); }

        .FWpb.LsaU {
            border-color: var(--accent-primary);
            background: color-mix(in srgb, var(--accent-primary) 8%, transparent);
        }

        .mFdr {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all .2s ease;
        }

        .FWpb.LsaU .mFdr {
            border-color: var(--accent-primary);
            background: var(--accent-primary);
        }

        .xIiQ {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #fff;
            opacity: 0;
            transition: opacity .2s ease;
        }

        .FWpb.LsaU .xIiQ { opacity: 1; }

        .ZZ9D {
            font-size: 11px;
            font-weight: 700;
            color: #34d399;
            background: #34d3991f;
            padding: 3px 4px;
            border-radius: 4px;
            line-height: 1;
        }

        .HSCi {
            position: relative;
            width: 100%;
            height: 224px;
            overflow: hidden;
        }

        @media (max-width: 1173px) {
            .HSCi { height: 170px; }
        }

        .s7Dy {
            display: flex;
            gap: 24px;
        }

        .s7Dy .V85j {
            display: flex;
            gap: 6px;
        }

        .s7Dy .scXa {
            font-weight: 600;
            color: var(--text-primary);
        }

        .s7Dy .zf0W {
            color: var(--text-secondary);
        }

        .TuT8 {
            display: flex;
            flex-direction: column;
            background: var(--block-bg);
            border-radius: 12px;
            overflow: hidden;
        }

        .dLvv {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 12px;
            border-bottom: 1px solid var(--border-color);
        }

        .ZGCq {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: #3b82f61a;
            color: var(--accent-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .ujfg {
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .SMFN {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 15px;
            line-height: 1;
            font-weight: 500;
            color: var(--text-primary);
            min-width: 0;
        }

        .PlGk {
            font-size: 13px;
            line-height: 1.35;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        [data-theme="dark"] .dLvv {
            border-bottom-color: #ffffff14;
        }

        .pkil {
            display: flex;
            align-items: center;
            background: var(--bg-secondary);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 4px;
            box-shadow: 0 4px 16px #0003;
        }

        .unLj {
            display: flex;
            gap: 2px;
        }

        .v35L {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border: none;
            border-radius: 6px;
            background: transparent;
            color: var(--text-primary);
            cursor: pointer;
            transition: all .15s ease;
        }

        .v35L:hover { background: var(--bg-hover); }
        .v35L:active { transform: scale(.95); }
        .v35L.cOiy { background: var(--accent-color); color: #fff; }

        .n9BR {
            height: 4px;
            background: var(--bg-secondary);
            border-radius: 2px;
            overflow: hidden;
            width: 100%;
            max-width: 360px;
        }

        .vrdp {
            height: 100%;
            background: var(--accent-primary);
            transition: width .3s ease;
            border-radius: 2px;
        }

        .Fxfi {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 32px 24px;
            border: 2px dashed var(--border-color);
            border-radius: 16px;
            background: var(--bg-secondary);
            cursor: pointer;
            transition: border-color .2s ease, background .2s ease;
        }

        .Fxfi:hover {
            border-color: var(--accent-primary);
            background: var(--bg-hover);
        }

        .jLet {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: var(--block-bg);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            color: var(--text-primary);
            font-size: 14px;
            font-weight: 500;
            min-width: 130px;
            justify-content: space-between;
        }

        .jLet svg {
            flex-shrink: 0;
            transition: transform .2s ease;
        }

        .jLet.tAyL svg { transform: rotate(180deg); }
        .VEWp { white-space: nowrap; }

        .bFsP {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 12px 16px;
            background: #ef44441a;
            border: 1px solid rgba(239, 68, 68, .3);
            border-radius: 12px;
        }

        .Wido {
            font-size: 14px;
            font-weight: 500;
            color: #ef4444;
        }

        .PG5g {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .QfQc {
            padding: 12px 16px;
            background: var(--error-bg, rgba(255, 59, 48, .1));
            border: 1px solid var(--error-border, rgba(255, 59, 48, .3));
            border-radius: 12px;
            color: var(--error-text, #ff3b30);
            font-size: 14px;
            text-align: center;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            padding: 3px 8px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
        }

        .tag-blue { color: var(--accent-primary); background: color-mix(in srgb, var(--accent-primary) 12%, transparent); }
        .tag-green { color: #34d399; background: #34d3991f; }
        .tag-red { color: #ef4444; background: #ef44441a; }
        .tag-purple { color: #8b5cf6; background: #8b5cf61a; }

        .inline-code {
            font-family: SF Mono, Fira Code, Consolas, monospace;
            background-color: var(--bg-secondary);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: .85em;
        }

        .blockquote {
            border-left: 3px solid var(--accent-color);
            padding-left: 12px;
            color: var(--text-secondary);
            font-style: italic;
        }

        .spoiler {
            background-color: var(--text-primary);
            color: transparent;
            border-radius: 4px;
            padding: 0 4px;
            cursor: pointer;
            transition: all .2s ease;
            user-select: none;
        }

        .spoiler.revealed {
            background-color: transparent;
            color: var(--text-primary);
        }

        .link-demo {
            color: var(--link-color);
            text-decoration: none;
            font-weight: 500;
            cursor: pointer;
        }

        .link-demo:hover { text-decoration: underline; }

        .showcase-page {
            min-height: 100vh;
            padding: 48px 24px 120px;
            max-width: 960px;
            margin: 0 auto;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .showcase-header h1 {
            font-family: 'Unbounded', 'Onest', sans-serif;
            font-size: 36px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-like));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .showcase-header p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        .theme-bar {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 48px;
        }

        .theme-btn {
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            border: 1px solid var(--border-color);
            background: var(--block-bg);
            color: var(--text-primary);
            cursor: pointer;
            transition: all .15s ease;
        }

        .theme-btn.active {
            background: var(--btn-primary-bg);
            color: var(--btn-primary-text);
            border-color: transparent;
        }

        .section {
            margin-bottom: 56px;
            animation: fadeUp 0.5s ease forwards;
            opacity: 0;
        }

        .section:nth-child(2) { animation-delay: 0.05s; }
        .section:nth-child(3) { animation-delay: 0.1s; }
        .section:nth-child(4) { animation-delay: 0.15s; }
        .section:nth-child(5) { animation-delay: 0.2s; }
        .section:nth-child(6) { animation-delay: 0.25s; }
        .section:nth-child(7) { animation-delay: 0.3s; }
        .section:nth-child(8) { animation-delay: 0.35s; }
        .section:nth-child(9) { animation-delay: 0.4s; }
        .section:nth-child(10) { animation-delay: 0.45s; }
        .section:nth-child(11) { animation-delay: 0.5s; }
        .section:nth-child(12) { animation-delay: 0.55s; }
        .section:nth-child(13) { animation-delay: 0.6s; }
        .section:nth-child(14) { animation-delay: 0.65s; }
        .section:nth-child(15) { animation-delay: 0.7s; }
        .section:nth-child(16) { animation-delay: 0.75s; }
        .section:nth-child(17) { animation-delay: 0.8s; }
        .section:nth-child(18) { animation-delay: 0.85s; }
        .section:nth-child(19) { animation-delay: 0.9s; }
        .section:nth-child(20) { animation-delay: 0.95s; }

        .section-title {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border-color);
        }

        .card {
            background: var(--block-bg);
            border-radius: 36px;
            padding: 24px;
            margin-bottom: 20px;
        }

        @media (max-width: 768px) {
            .card {
                border-radius: 24px;
                padding: 16px;
            }
        }

        .card-label {
            font-size: 11px;
            font-weight: 500;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: .5px;
            margin-bottom: 16px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .row:last-child { margin-bottom: 0; }

        .col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .mini-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 20px;
        }

        .mini-card {
            background: var(--block-bg);
            border-radius: 24px;
            padding: 20px;
        }

        .mini-title {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .8px;
            color: var(--text-secondary);
            margin-bottom: 14px;
        }

        .field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .field-error {
            font-size: 12px;
            color: var(--error-color, #ef4444);
        }

        .chat-demo {
            max-width: 380px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .bubble {
            max-width: 75%;
            padding: 10px 14px;
            border-radius: 16px;
            font-size: 14px;
            line-height: 1.4;
        }

        .bubble.in {
            background: var(--block-bg-secondary);
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }

        .bubble.out {
            background: var(--accent-primary);
            color: #fff;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .progress-demo {
            width: 100%;
            max-width: 360px;
        }

        .progress-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .progress-label {
            font-size: 13px;
            color: var(--text-secondary);
        }
        
.shimmer-msg {
    display: none;
    gap: 10px;
    max-width: 720px;
    width: 100%;
    animation: shimmer-appear 0.3s ease forwards;
}
.shimmer-msg.visible {
    display: flex;
}
.shimmer-msg .msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
    color: #fff;
}
.shimmer-msg .msg-bubble {
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14.5px;
    line-height: 1.55;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-top-left-radius: 4px;
    flex: 1;
}
.shimmer-msg .shimmer-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0;
    color: var(--text-secondary);
    position: relative;
    display: inline-block;
}
.shimmer-msg .shimmer-text::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 40%,
        var(--text-primary) 50%,
        transparent 60%,
        transparent 100%
    );
    background-size: 400% 100%;
    background-position: 100% 0;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation: shimmer-sweep 2000ms linear infinite;
}
@keyframes shimmer-sweep {
    0%   { background-position: 100% 0; }
    100% { background-position: 0% 0; }
}
@keyframes shimmer-appear {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.shimmer-msg.hidden {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .shimmer-msg .shimmer-text::before { animation: none !important; }
}

@media (max-width: 600px) {
    .shimmer-msg .msg-bubble {
        font-size: 13.5px;
        padding: 10px 12px;
    }
    .shimmer-msg .shimmer-text {
        font-size: 13px;
    }
}
