.middle-wrapper
{
    max-width: 800px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.app-swipe-close-indicator
{
    position: fixed;
    top: 50%;
    left: calc(max(0px, env(safe-area-inset-left, 0px)) - 7px);
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid rgba(239, 68, 68, 0.85);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
    opacity: 0;
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
    z-index: 8000;
    transform: translate3d(0, -50%, 0);
}

.app-swipe-close-indicator::before,
.app-swipe-close-indicator::after
{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: rgba(239, 68, 68, 0.95);
    border-radius: 999px;
}

.app-swipe-close-indicator::before
{
    transform: translate(-50%, -50%) rotate(45deg);
}

.app-swipe-close-indicator::after
{
    transform: translate(-50%, -50%) rotate(-45deg);
}

.app-user-state
{
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    box-sizing: border-box;
    display: none;
}

.app-user-state--visible
{
    display: flex;
}

.app-user-state--blocked
{
    display: flex;
}

.app-user-state__card
{
    width: 100%;
    max-width: 520px;
    padding: 28px 24px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(24, 32, 52, 0.12);
    border: 1px solid rgba(24, 32, 52, 0.08);
    color: #0f172a;
    opacity: 0;
}

.robot-icon
{
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    background: transparent;
}

.robot-icon::before,
.robot-icon::after
{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 14px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
}

.robot-icon::before
{
    transform: translate(-50%, -50%) rotate(45deg);
}

.robot-icon::after
{
    transform: translate(-50%, -50%) rotate(-45deg);
}

.app-user-state__card--active
{
    opacity: 1;
}

.app-user-state__title
{
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 600;
}

.app-user-state__text
{
    margin: 0 0 18px;
    font-size: 16px;
    color: rgba(15, 23, 42, 0.72);
}

.app-user-state__bot-link
{
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: #2b6ae0;
    text-decoration: none;
}

.app-user-state__bot-link:hover
{
    text-decoration: underline;
}

.app-user-state__form
{
    display: grid;
    gap: 12px;
    margin-bottom: 12px;
}

.app-user-state__input
{
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.2);
    background: #f8fafc;
    color: #0f172a;
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
}

.app-user-state__input::placeholder
{
    color: rgba(15, 23, 42, 0.5);
    letter-spacing: 0;
}

.app-user-state__error
{
    font-size: 13px;
    color: #d64545;
}

.app-user-state__table
{
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.app-user-state__table th,
.app-user-state__table td
{
    text-align: left;
    padding: 12px 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    font-size: 14px;
    vertical-align: top;
}

.app-user-state__table tr:first-child th,
.app-user-state__table tr:first-child td
{
    border-top: none;
}

.app-user-state__table th
{
    width: 38%;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.6);
}

.app-user-state__action
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 16px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.app-user-state__action--secondary
{
    margin-top: 12px;
    background: #e2e8f0;
    color: #0f172a;
}

.app-user-state__action:disabled
{
    opacity: 0.6;
    cursor: not-allowed;
}

.app-user-state__action[aria-disabled="true"]
{
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.app-user-state__action:not(:disabled):hover,
.app-user-state__action:not([aria-disabled="true"]):hover
{
    transform: translateY(-1px);
}

.app-user-state__telegram-login
{
    margin-top: 12px;
}

.app-user-state__lang
{
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-user-state__lang-label
{
    font-size: 14px;
    color: rgba(15, 23, 42, 0.7);
}

.app-user-state__lang-select
{
    flex: 1;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    background: #fff;
    color: #0f172a;
}

.app-user-state__hint
{
    margin-top: 8px;
    font-size: 13px;
    color: rgba(15, 23, 42, 0.65);
}

.app-start-interests
{
    position: fixed;
    inset: 0;
    z-index: 5500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(15, 23, 42, 0.34);
}

.app-start-interests__card
{
    width: min(560px, 100%);
    max-height: min(84vh, 760px);
    overflow: auto;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.22);
    padding: 18px;
}

.app-start-interests__title
{
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
}

.app-start-interests__hint
{
    margin-top: 8px;
    color: #475569;
    font-size: 14px;
}

.app-start-interests__presets
{
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.app-start-interests__chip
{
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #f8fafc;
    color: #1e293b;
    font-size: 14px;
    line-height: 1;
    padding: 10px 12px;
    cursor: pointer;
}

.app-start-interests__chip--active
{
    border-color: #2563eb;
    background: #eaf2ff;
    color: #1d4ed8;
}

.app-start-interests__input-row
{
    margin-top: 14px;
    display: flex;
    gap: 8px;
}

.app-start-interests__input
{
    flex: 1;
    min-width: 0;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #0f172a;
    font-size: 15px;
    padding: 10px 12px;
}

.app-start-interests__add
{
    border: none;
    border-radius: 12px;
    background: #eef2ff;
    color: #1d4ed8;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    cursor: pointer;
}

.app-start-interests__clouds
{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.app-start-interests__cloud
{
    border: 1px solid #93c5fd;
    border-radius: 999px;
    background: #eff6ff;
    color: #1e40af;
    font-size: 13px;
    line-height: 1;
    padding: 8px 10px;
    cursor: pointer;
}

.app-start-interests__actions
{
    margin-top: 14px;
    display: flex;
    gap: 8px;
}

.app-start-interests__save
{
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px;
    cursor: pointer;
}

.app-start-interests__skip
{
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    background: #fff;
    color: #334155;
    font-size: 14px;
    padding: 10px 14px;
    cursor: pointer;
}

.llm-assistant-dock
{
    position: fixed;
    width: 56px;
    height: 56px;
    left: max(2px, calc(50% - 400px + 18px));
    bottom: 75px;
    z-index: 1001;
}

.llm-assistant-button
{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
    cursor: pointer;
    user-select: none;
    touch-action: none;
    opacity: 0.7;
    position: relative;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.llm-assistant-button--loading
{
    opacity: 1;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.4);
}

.llm-assistant-button--loading .llm-assistant-label
{
    opacity: 0.25;
    transform: scale(0.9);
}

.llm-assistant-button--loading .llm-assistant-quest
{
    opacity: 0;
    animation: none;
}

.llm-assistant-label
{
    position: relative;
    z-index: 2;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.llm-assistant-loader
{
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 2px solid rgba(148, 163, 184, 0.5);
    border-top-color: #38bdf8;
    opacity: 0;
}

.llm-assistant-loader::after
{
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #38bdf8;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.8);
}

.llm-assistant-button--loading .llm-assistant-loader
{
    opacity: 1;
    animation: llm-assistant-spin 1s linear infinite;
}

.llm-assistant-quest
{
    position: absolute;
    top: -6px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(145deg, #facc15, #f59e0b);
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(15, 23, 42, 0.15);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.llm-assistant-button--done .llm-assistant-quest
{
    opacity: 1;
    transform: scale(1);
    animation: llm-assistant-quest 1.2s ease-in-out infinite;
}

@keyframes llm-assistant-spin
{
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes llm-assistant-quest
{
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.05) translateY(-2px); }
    100% { transform: scale(1) translateY(0); }
}

.llm-assistant-mini
{
    position: absolute;
    left: 0;
    bottom: 64px;
    width: 320px;
    max-height: 320px;
    background: #f8fafc;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.28);
    display: none;
    flex-direction: column;
    gap: 8px;
}

.llm-assistant-dock--open .llm-assistant-mini
{
    display: flex;
}

.llm-assistant-bubble
{
    background: #e2e8f0;
    color: #0f172a;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.35;
    white-space: pre-wrap;
    word-break: break-word;
    position: relative;
    max-height: 220px;
    overflow: auto;
}

.llm-assistant-bubble::after
{
    content: '';
    position: absolute;
    right: 16px;
    bottom: -6px;
    width: 10px;
    height: 10px;
    background: #e2e8f0;
    transform: rotate(45deg);
}

.llm-assistant-input-row
{
    display: flex;
    gap: 10px;
    align-items: flex-end;
    padding: 8px 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 245, 249, 0.9));
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.llm-assistant-input-row textarea
{
    flex: 1;
    border: 1px solid rgba(15, 23, 42, 0.2);
    border-radius: 12px;
    padding: 8px 10px;
    font-size: 13px;
    background: #fff;
    color: #0f172a;
    line-height: 1.4;
    min-height: 34px;
    max-height: 300px;
    resize: none;
    overflow: hidden;
}

.llm-assistant-input-row textarea:focus
{
    outline: none;
    border-color: rgba(15, 23, 42, 0.5);
    box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.08);
}

.llm-assistant-send
{
    border: none;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 8px 0;
    border-radius: 12px;
    font-size: 13px;
    cursor: pointer;
    width: 52px;
    height: 36px;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.2);
}

.llm-assistant-send:disabled
{
    opacity: 0.6;
    cursor: default;
}

.llm-assistant-suggestions
{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.llm-assistant-suggestion
{
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: #f8fafc;
    color: #0f172a;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.25;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.llm-assistant-suggestion:hover
{
    border-color: rgba(15, 23, 42, 0.35);
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.12);
    transform: translateY(-1px);
}

.llm-assistant-panel
{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--app-viewport-height);
    z-index: 999;
    display: flex;
    align-items: stretch;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.llm-assistant-panel__backdrop
{
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 120% at 20% -10%, #fef3c7 0%, rgba(254, 243, 199, 0) 45%),
        radial-gradient(120% 120% at 80% 0%, rgba(56, 189, 248, 0.18) 0%, rgba(56, 189, 248, 0) 50%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 45%, #e2e8f0 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.llm-assistant-panel--open
{
    opacity: 1;
    pointer-events: auto;
    z-index: 1000;
}

.llm-assistant-panel--open .llm-assistant-panel__backdrop
{
    opacity: 1;
}

.llm-assistant-panel__sheet
{
    position: relative;
    width: min(720px, 100%);
    height: 100%;
    padding: 16px 16px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(28px) scale(0.98);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.llm-assistant-panel--open .llm-assistant-panel__sheet
{
    transform: translateY(0) scale(1);
    opacity: 1;
    padding-top: 10px;
}

.llm-assistant-panel__header
{
    position: sticky;
    top: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.llm-assistant-panel__swipe
{
    position: absolute;
    top: 8px;
    left: 50%;
    width: 48px;
    height: 4px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.6);
    transform: translateX(-50%);
}

.llm-assistant-panel__title
{
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.01em;
}

.llm-assistant-panel__close
{
    border: none;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.llm-assistant-panel__scroll
{
    position: relative;
    flex: 1;
    overflow: auto;
    padding: 4px 6px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.llm-assistant-panel__bubble
{
    background: #ffffff;
    border-radius: 22px;
    padding: 16px 18px;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.08);
    white-space: pre-wrap;
    word-break: break-word;
}

.llm-assistant-panel__line
{
    display: block;
    opacity: 0;
    transform: translateY(4px);
    animation: llm-line-fade-in 0.22s ease forwards;
}

.llm-assistant-panel__line + .llm-assistant-panel__line
{
    margin-top: 4px;
}

.llm-assistant-panel__response
{
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.llm-assistant-panel__response .llm-assistant-panel__bubble
{
    flex: 1;
}

.llm-assistant-panel__empty
{
    color: rgba(15, 23, 42, 0.6);
    font-size: 14px;
    padding: 16px 2px 0;
}

.llm-assistant-panel__thinking
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-top: 10px;
    flex: 0 0 28px;
}

.llm-assistant-panel__thinking-dot
{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0f172a;
    opacity: 0.35;
    animation: llm-thinking-breathe 1.2s ease-in-out infinite;
}


.llm-assistant-panel__suggestions
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.llm-assistant-panel__suggestion
{
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.llm-assistant-panel__suggestion:hover
{
    transform: translateY(-1px);
    border-color: rgba(15, 23, 42, 0.3);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.llm-assistant-panel__actions
{
    display: flex;
}

.llm-assistant-panel__action
{
    flex: 1;
    border: none;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.llm-assistant-panel__action:hover
{
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.25);
}

.llm-assistant-panel__input
{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.llm-assistant-panel__input textarea
{
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    line-height: 24px;
    color: #0f172a;
    min-height: 24px;
    max-height: 220px;
    padding: 0;
    margin: 0;
    resize: none;
    overflow: hidden;
}

.llm-assistant-panel__input textarea:focus
{
    outline: none;
}

.llm-assistant-panel__send
{
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0f172a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.3);
    cursor: pointer;
}

.llm-assistant-panel__send:disabled
{
    opacity: 0.5;
    cursor: default;
}

.llm-assistant-panel__sheet.llm-assistant-panel--swiping
{
    transition: none;
}

.llm-assistant-active .tabs
{
    display: none;
}
[v-cloak]
{
    display: none;
}

.app-loader
{
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in oklab, var(--bg-custom) 92%, transparent);
    color: var(--fg-custom);
    z-index: 3000;
}

.app-loader__spinner
{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid color-mix(in oklab, var(--fg-custom) 20%, transparent);
    border-top-color: var(--accent-custom);
    animation: app-loader-spin 0.9s linear infinite;
}

.daily-coin
{
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(90px + var(--app-bottom-inset, 0px));
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    color: var(--fg-custom);
    z-index: 1001;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.daily-coin__coin
{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffe7a3 0%, #ffd066 32%, #f3b232 60%, #d18b16 100%);
    box-shadow: inset 0 0 0 1px rgba(120, 80, 10, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
    position: relative;
    animation: daily-coin-bounce 1.8s cubic-bezier(0.3, 0.8, 0.3, 1) infinite;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    will-change: transform, box-shadow;
}

.daily-coin__coin::before
{
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff2c7 0%, #ffd98a 45%, #f0b13a 100%);
    box-shadow: inset 0 0 0 1px rgba(145, 95, 20, 0.35);
}

.daily-coin__coin::after
{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18),
                inset 0 -6px 10px rgba(120, 70, 10, 0.25);
}

.daily-coin__coin-value
{
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 18px;
    color: #6f3f00;
    text-shadow: 0 1px 0 rgba(255, 240, 200, 0.75), 0 -1px 0 rgba(130, 70, 0, 0.4);
}

.daily-coin--loading
{
    opacity: 0.7;
    pointer-events: none;
}

.daily-coin-burst
{
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1500;
}

.daily-coin-burst__coin
{
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffe7a3 0%, #ffd066 32%, #f3b232 60%, #d18b16 100%);
    box-shadow: inset 0 0 0 1px rgba(120, 80, 10, 0.35), 0 4px 10px rgba(0, 0, 0, 0.2);
    will-change: transform, opacity;
}

@keyframes daily-coin-bounce
{
    0%, 100%
    {
        transform: translateY(0) scale(1);
        box-shadow: inset 0 0 0 1px rgba(120, 80, 10, 0.35), 0 6px 12px rgba(0, 0, 0, 0.18);
    }
    35%
    {
        transform: translateY(-10px) scale(1.02);
        box-shadow: inset 0 0 0 1px rgba(120, 80, 10, 0.35), 0 14px 18px rgba(0, 0, 0, 0.16);
    }
    55%
    {
        transform: translateY(0) scale(0.98);
    }
    70%
    {
        transform: translateY(-4px) scale(1.01);
    }
}

@keyframes app-loader-spin
{
    to
    {
        transform: rotate(360deg);
    }
}

@keyframes llm-thinking-breathe
{
    0%, 100%
    {
        transform: scale(0.85);
        opacity: 0.35;
    }
    50%
    {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

@keyframes llm-line-fade-in
{
    from
    {
        opacity: 0;
        transform: translateY(4px);
    }
    to
    {
        opacity: 1;
        transform: translateY(0);
    }
}
