﻿    .auronix-chat-root {
        --bot-tilt-x: -7deg;
        --bot-tilt-y: 4deg;
        position: fixed;
        right: clamp(16px, 2.7vw, 30px);
        bottom: clamp(18px, 2.7vw, 30px);
        z-index: 60;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        font-family: Rajdhani, sans-serif;
        pointer-events: none;
        isolation: isolate;
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    }

    .auronix-chat-root *,
    .auronix-chat-root *::before,
    .auronix-chat-root *::after {
        box-sizing: border-box;
    }

    body.auronix-assistants-hidden .auronix-chat-root,
    body.auronix-assistants-hidden .auronix-whatsapp-widget {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, 18px, 0) scale(0.96);
    }

    .auronix-chat-window {
        width: min(410px, calc(100vw - 28px));
        height: clamp(320px, calc(100svh - 246px), 480px);
        min-height: 0;
        margin-bottom: 14px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        pointer-events: auto;
        color: #f7fbff;
        border: 1px solid rgba(0, 243, 255, 0.28);
        border-radius: 12px;
        background:
            linear-gradient(145deg, rgba(5, 11, 22, 0.68), rgba(1, 3, 6, 0.72)),
            radial-gradient(circle at 82% 0%, rgba(0, 243, 255, 0.22), transparent 42%);
        box-shadow:
            0 24px 80px rgba(0, 0, 0, 0.76),
            0 0 40px rgba(0, 243, 255, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.14);
        backdrop-filter: blur(22px) saturate(1.4);
        opacity: 0;
        visibility: hidden;
        transform: translate3d(0, 16px, 0) scale(0.96) rotateX(4deg);
        transform-origin: bottom right;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .auronix-chat-root.is-open .auronix-chat-window {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0) scale(1) rotateX(0);
    }

    .auronix-chat-root.is-open {
        z-index: 140;
    }

    .auronix-chat-root::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background: rgba(0, 0, 0, 0.62);
        backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .auronix-chat-root.is-open::before {
        opacity: 1;
        visibility: visible;
    }

    .auronix-chat-header {
        position: relative;
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 15px 16px;
        border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        background:
            linear-gradient(90deg, rgba(0, 243, 255, 0.14), transparent 60%),
            rgba(3, 8, 15, 0.38);
    }

    .auronix-chat-header::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, #00e6ff, transparent);
        box-shadow: 0 0 18px rgba(0, 230, 255, 0.78);
    }

    .auronix-chat-avatar {
        width: 56px;
        height: 56px;
        flex: 0 0 auto;
        position: relative;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        background: rgba(3, 8, 15, 0.25);
        backdrop-filter: blur(8px);
        box-shadow:
            inset 0 0 18px rgba(0, 243, 255, 0.12),
            0 0 18px rgba(0, 243, 255, 0.18);
    }

    .auronix-chat-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: scale(1.02);
        transform-origin: center center;
        transition: opacity 0.22s ease;
        will-change: opacity;
    }

    .auronix-chat-title {
        min-width: 0;
        flex: 1;
    }

    .auronix-chat-title h3 {
        margin: 0 0 3px;
        color: #fff;
        font-family: Orbitron, Rajdhani, sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .auronix-chat-title p {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        margin: 0;
        color: rgba(0, 230, 255, 0.86);
        font-family: Orbitron, Rajdhani, sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .auronix-chat-status {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #0aff60;
        box-shadow: 0 0 12px rgba(10, 255, 96, 0.9);
    }

    .auronix-chat-close {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        color: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.04);
        transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
    }

    .auronix-chat-close:hover,
    .auronix-chat-close:focus-visible {
        color: #fff;
        border-color: rgba(0, 230, 255, 0.5);
        background: rgba(0, 230, 255, 0.1);
        outline: none;
    }

    .auronix-chat-messages {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.24)),
            radial-gradient(circle at 100% 18%, rgba(0, 243, 255, 0.08), transparent 35%);
        scrollbar-color: rgba(0, 243, 255, 0.35) transparent;
    }

    .auronix-message {
        display: flex;
    }

    .auronix-message[data-role="user"] {
        justify-content: flex-end;
    }

    .auronix-message-bubble {
        max-width: 86%;
        padding: 12px 14px;
        border: 1px solid rgba(0, 243, 255, 0.16);
        border-radius: 10px;
        color: rgba(239, 246, 255, 0.9);
        background: rgba(15, 25, 45, 0.55);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 18px rgba(0, 0, 0, 0.18);
        font-size: 14px;
        line-height: 1.55;
    }

    .auronix-message-bubble ul {
        margin: 6px 0;
        padding-left: 20px;
        list-style-type: disc;
    }

    .auronix-message-bubble li {
        margin-bottom: 4px;
    }

    .auronix-message--guide .auronix-message-bubble {
        max-width: 92%;
        background:
            linear-gradient(135deg, rgba(8, 18, 34, 0.96), rgba(12, 24, 44, 0.92)),
            rgba(18, 28, 48, 0.92);
        border-color: rgba(0, 230, 255, 0.22);
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.02),
            0 18px 30px rgba(0, 0, 0, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .auronix-message--guide .auronix-message-speaker {
        color: rgba(173, 243, 255, 0.9);
    }

    .auronix-chat-guide {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .auronix-chat-guide-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .auronix-chat-guide-choice,
    .auronix-chat-guide-next {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 8px 12px;
        color: #dffcff;
        border: 1px solid rgba(0, 230, 255, 0.24);
        border-radius: 8px;
        background: rgba(0, 230, 255, 0.08);
        font-family: Orbitron, Rajdhani, sans-serif;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }

    .auronix-chat-guide-choice:hover,
    .auronix-chat-guide-choice:focus-visible,
    .auronix-chat-guide-next:hover,
    .auronix-chat-guide-next:focus-visible {
        transform: translateY(-1px);
        border-color: rgba(0, 230, 255, 0.6);
        background: rgba(0, 230, 255, 0.16);
        box-shadow: 0 0 18px rgba(0, 230, 255, 0.18);
        outline: none;
    }

    .auronix-chat-guide-next {
        color: #001015;
        border-color: rgba(0, 230, 255, 0.62);
        background: linear-gradient(135deg, #00e6ff, #0a84ff);
        box-shadow: 0 0 18px rgba(0, 230, 255, 0.16);
    }

    .auronix-chat-guide-choice[data-tone="best"] {
        border-color: rgba(255, 215, 120, 0.42);
        background: rgba(255, 215, 120, 0.12);
        box-shadow: 0 0 18px rgba(255, 215, 120, 0.12);
    }

    .auronix-chat-guide-choice[data-tone="live"] {
        border-color: rgba(0, 230, 255, 0.42);
        background: rgba(0, 230, 255, 0.12);
    }

    .auronix-chat-guide-choice[data-tone="summary"] {
        border-color: rgba(130, 255, 206, 0.38);
        background: rgba(130, 255, 206, 0.1);
    }

    .auronix-chat-guide-note {
        color: rgba(199, 216, 232, 0.76);
        font-size: 12px;
    }

    .auronix-message-bubble strong {
        color: #fff;
        font-weight: 700;
    }

    .auronix-message[data-role="user"] .auronix-message-bubble {
        color: #ffffff;
        border-color: rgba(0, 243, 255, 0.6);
        background: linear-gradient(135deg, rgba(0, 243, 255, 0.85), rgba(10, 132, 255, 0.85));
        box-shadow: 0 8px 20px rgba(0, 243, 255, 0.14);
        text-shadow: 0 1px 2px rgba(0, 10, 20, 0.38);
    }

    .auronix-message-speaker {
        margin: 0 0 5px;
        color: rgba(0, 230, 255, 0.84);
        font-family: Orbitron, Rajdhani, sans-serif;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .auronix-message[data-role="user"] .auronix-message-speaker {
        color: rgba(255, 255, 255, 0.85);
    }

    .auronix-message[data-role="user"] .auronix-message-bubble strong {
        color: #001015;
    }

    .auronix-chat-search {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        padding: 9px 12px;
        color: #00e6ff;
        border: 1px solid rgba(0, 230, 255, 0.5);
        border-radius: 8px;
        background: rgba(0, 230, 255, 0.1);
        font-family: Orbitron, Rajdhani, sans-serif;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .auronix-chat-loader {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 12px 14px;
        color: rgba(0, 230, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        background: rgba(18, 28, 48, 0.92);
        font-family: Orbitron, Rajdhani, sans-serif;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    .auronix-typing-dots {
        display: inline-flex;
        gap: 4px;
    }

    .auronix-typing-dots span {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: currentColor;
        animation: auronixTyping 0.88s ease-in-out infinite;
    }

    .auronix-typing-dots span:nth-child(2) {
        animation-delay: 0.12s;
    }

    .auronix-typing-dots span:nth-child(3) {
        animation-delay: 0.24s;
    }

    .auronix-chat-composer {
        padding: 14px;
        border-top: 1px solid rgba(0, 243, 255, 0.2);
        background: rgba(3, 8, 15, 0.45);
    }

    .auronix-chat-input-wrap {
        position: relative;
    }

    .auronix-chat-input-wrap input {
        width: 100%;
        height: 48px;
        padding: 0 52px 0 14px;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.42);
        font-size: 15px;
        outline: none;
        transition: border-color 0.18s ease, box-shadow 0.18s ease;
    }

    .auronix-chat-input-wrap input::placeholder {
        color: rgba(203, 213, 225, 0.62);
    }

    .auronix-chat-input-wrap input:focus {
        border-color: rgba(0, 230, 255, 0.7);
        box-shadow: 0 0 0 3px rgba(0, 230, 255, 0.12);
    }

    .auronix-chat-send {
        position: absolute;
        top: 50%;
        right: 7px;
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #001015;
        border-radius: 8px;
        background: linear-gradient(135deg, #00e6ff, #0a84ff);
        box-shadow: 0 0 16px rgba(0, 230, 255, 0.24);
        transform: translateY(-50%);
        transition: filter 0.18s ease, transform 0.18s ease;
    }

    .auronix-chat-send:hover,
    .auronix-chat-send:focus-visible {
        filter: brightness(1.12);
        transform: translateY(-50%) scale(1.04);
        outline: none;
    }

    .auronix-chat-send:disabled {
        cursor: not-allowed;
        opacity: 0.52;
        filter: grayscale(0.45);
    }

    .auronix-chat-toggle {
        position: relative;
        width: 100px;
        height: 125px;
        display: block;
        padding: 0;
        pointer-events: auto;
        border: 0;
        background: transparent;
        isolation: isolate;
        perspective: 1000px;
        transform-style: preserve-3d;
    }

    .auronix-bot-stage {
        position: absolute;
        inset: 0 0 10px;
        transform-style: preserve-3d;
        animation: auronixBotFloat 5.8s ease-in-out infinite;
    }

    .auronix-bot-glow {
        position: absolute;
        left: 12%;
        right: 8%;
        top: 10%;
        bottom: -2%;
        z-index: -1;
        border-radius: 50%;
        background:
            radial-gradient(circle at 46% 19%, rgba(255, 255, 255, 0.24), transparent 20%),
            radial-gradient(circle at 54% 52%, rgba(0, 230, 255, 0.42), transparent 54%),
            radial-gradient(circle at 72% 66%, rgba(0, 117, 255, 0.34), transparent 46%);
        filter: blur(14px);
        opacity: 0.76;
        transform: translateZ(-38px);
        animation: auronixBotGlow 3.8s ease-in-out infinite;
    }

    .auronix-bot-aura {
        position: absolute;
        left: 10%;
        right: 5%;
        bottom: -4px;
        height: 20px;
        z-index: -2;
        border-radius: 50%;
        background:
            radial-gradient(ellipse at center, rgba(0, 230, 255, 0.58), rgba(0, 132, 255, 0.16) 44%, transparent 72%),
            radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2), transparent 46%);
        filter: blur(5px);
        opacity: 0.86;
        transform: rotateX(64deg) translateZ(-76px);
        animation: auronixFloorPulse 2.9s ease-in-out infinite;
    }

    .auronix-bot-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        opacity: 0;
        filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 12px rgba(0, 230, 255, 0.28));
        transform: rotateY(var(--bot-tilt-x)) rotateX(var(--bot-tilt-y)) translateZ(22px) scale(0.9);
        transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.25, 1, 0.5, 1), filter 0.25s ease;
        will-change: transform, opacity;
        pointer-events: none;
    }

    .auronix-bot-image.active {
        opacity: 1;
        transform: rotateY(var(--bot-tilt-x)) rotateX(var(--bot-tilt-y)) translateZ(22px) scale(1);
    }

    .auronix-bot-shadow {
        position: absolute;
        left: 20%;
        right: 12%;
        bottom: 12px;
        height: 8px;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(0, 230, 255, 0.45), rgba(0, 20, 30, 0.25) 42%, rgba(0, 0, 0, 0) 72%);
        filter: blur(3px);
        transform: translateZ(-20px);
        animation: auronixShadowPulse 5.8s ease-in-out infinite;
    }

    .auronix-chat-badge {
        position: absolute;
        right: -4px;
        top: 6px;
        z-index: 2;
        min-width: 30px;
        height: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #001015;
        border: 1px solid rgba(255, 255, 255, 0.42);
        border-radius: 7px;
        background: linear-gradient(135deg, #00e6ff, #0a84ff);
        box-shadow: 0 0 14px rgba(0, 230, 255, 0.5);
        font-family: Orbitron, Rajdhani, sans-serif;
        font-size: 9px;
        font-weight: 900;
        letter-spacing: 0.08em;
    }

    .auronix-chat-nudge {
        position: absolute;
        right: 76px;
        bottom: 46px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        height: 32px;
        padding: 0 12px;
        color: rgba(246, 252, 255, 0.96);
        border: 1px solid rgba(0, 230, 255, 0.42);
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(0, 230, 255, 0.06)),
            rgba(3, 8, 15, 0.62);
        box-shadow:
            0 10px 24px rgba(0, 0, 0, 0.42),
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            0 0 18px rgba(0, 230, 255, 0.18);
        backdrop-filter: blur(12px) saturate(1.25);
        font-family: Orbitron, Rajdhani, sans-serif;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        white-space: nowrap;
        transform-origin: right center;
        animation: auronixBubbleAppear 8.8s ease-in-out infinite;
    }

    .auronix-chat-nudge::before {
        content: "";
        position: absolute;
        right: -6px;
        top: 50%;
        width: 10px;
        height: 10px;
        border-top: 1px solid rgba(0, 230, 255, 0.42);
        border-right: 1px solid rgba(0, 230, 255, 0.42);
        background: rgba(5, 17, 28, 0.72);
        transform: translateY(-50%) rotate(45deg);
    }

    .auronix-chat-nudge::after {
        content: "";
        position: absolute;
        inset: 1px;
        border-radius: 7px;
        background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.16) 45%, transparent 58% 100%);
        opacity: 0;
        animation: auronixBubbleSweep 8.8s ease-in-out infinite;
    }

    .auronix-chat-root.is-open .auronix-chat-nudge {
        opacity: 0;
        transform: translateY(8px);
    }

    .auronix-chat-toggle:hover .auronix-bot-image.active,
    .auronix-chat-toggle:focus-visible .auronix-bot-image.active,
    .auronix-chat-root.is-thinking .auronix-bot-image.active {
        filter:
            drop-shadow(0 15px 24px rgba(0, 0, 0, 0.72))
            drop-shadow(0 0 22px rgba(0, 230, 255, 0.52));
    }

    .auronix-chat-root.is-celebrating .auronix-bot-image.active {
        filter:
            drop-shadow(0 16px 24px rgba(0, 0, 0, 0.7))
            drop-shadow(0 0 24px rgba(0, 230, 255, 0.7))
            drop-shadow(0 0 36px rgba(0, 255, 176, 0.22));
        animation: auronixCelebratePulse 1.7s ease-in-out 1;
    }

    .auronix-chat-root.is-celebrating .auronix-bot-glow,
    .auronix-chat-root.is-celebrating .auronix-bot-aura,
    .auronix-chat-root.is-celebrating .auronix-bot-shadow {
        animation-duration: 1.4s;
        opacity: 1;
    }

    body:not(.is-home-page) .auronix-bot-stage,
    body:not(.is-home-page) .auronix-bot-glow,
    body:not(.is-home-page) .auronix-bot-aura,
    body:not(.is-home-page) .auronix-bot-shadow,
    body:not(.is-home-page) .auronix-chat-nudge,
    body:not(.is-home-page) .auronix-chat-nudge::after {
        animation: none;
    }

    body:not(.is-home-page) .auronix-chat-nudge {
        opacity: 0.88;
    }

    body.is-home-page .auronix-bot-stage,
    body.is-home-page .auronix-bot-glow,
    body.is-home-page .auronix-bot-aura,
    body.is-home-page .auronix-bot-shadow,
    body.is-home-page .auronix-chat-nudge,
    body.is-home-page .auronix-chat-nudge::after {
        animation: none;
    }

    body.is-home-page .auronix-chat-window,
    body.is-home-page .auronix-chat-root::before {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .auronix-chat-toggle:hover .auronix-bot-stage,
    .auronix-chat-toggle:focus-visible .auronix-bot-stage {
        transform: translate3d(-2px, -8px, 0) rotateZ(-4deg);
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .auronix-chat-toggle:hover .auronix-bot-glow,
    .auronix-chat-toggle:focus-visible .auronix-bot-glow,
    .auronix-chat-toggle:hover .auronix-bot-aura,
    .auronix-chat-toggle:focus-visible .auronix-bot-aura {
        opacity: 1;
        filter: blur(15px) saturate(1.35);
    }

    .auronix-chat-toggle:focus-visible {
        outline: 2px solid rgba(0, 230, 255, 0.75);
        outline-offset: 8px;
        border-radius: 8px;
    }

    @keyframes auronixBotFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes auronixBotGlow {
        0%,
        100% {
            opacity: 0.58;
            transform: translateZ(-38px) scale(0.94);
        }

        50% {
            opacity: 0.9;
            transform: translateZ(-38px) scale(1.04);
        }
    }

    @keyframes auronixFloorPulse {
        0%,
        100% {
            opacity: 0.58;
            transform: rotateX(64deg) translateZ(-76px) scale(0.86);
        }

        50% {
            opacity: 1;
            transform: rotateX(64deg) translateZ(-76px) scale(1.12);
        }
    }

    @keyframes auronixShadowPulse {
        0%,
        100% {
            opacity: 0.46;
            transform: translateZ(-62px) scaleX(0.9);
        }

        50% {
            opacity: 0.78;
            transform: translateZ(-62px) scaleX(1.08);
        }
    }

    @keyframes auronixBubbleAppear {
        0%,
        12% {
            opacity: 0;
            transform: translate3d(8px, 4px, 0) scale(0.94);
        }

        20%,
        72% {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
        }

        86%,
        100% {
            opacity: 0;
            transform: translate3d(6px, 2px, 0) scale(0.96);
        }
    }

    @keyframes auronixBubbleSweep {
        0%,
        28%,
        100% {
            opacity: 0;
            transform: translateX(-40%);
        }

        42% {
            opacity: 1;
        }

        58% {
            opacity: 0;
            transform: translateX(42%);
        }
    }

    @keyframes auronixCelebratePulse {
        0%,
        100% {
            transform: rotateY(var(--bot-tilt-x)) rotateX(var(--bot-tilt-y)) translateZ(22px) scale(1.08);
        }

        35% {
            transform: rotateY(calc(var(--bot-tilt-x) + 5deg)) rotateX(calc(var(--bot-tilt-y) - 2deg)) translateZ(22px) scale(1.18);
        }

        70% {
            transform: rotateY(calc(var(--bot-tilt-x) - 4deg)) rotateX(calc(var(--bot-tilt-y) + 2deg)) translateZ(22px) scale(1.14);
        }
    }

    @keyframes auronixTyping {
        0%,
        100% {
            transform: translateY(0);
            opacity: 0.45;
        }

        50% {
            transform: translateY(-4px);
            opacity: 1;
        }
    }

    @media (max-width: 640px) {
        .auronix-chat-root::before {
            background: rgba(0, 0, 0, 0.74);
            backdrop-filter: blur(5px);
        }

        .auronix-chat-root {
            right: 12px;
            bottom: calc(16px + env(safe-area-inset-bottom));
            z-index: 68;
        }

        .auronix-chat-window {
            width: calc(100vw - 24px);
            height: clamp(320px, calc(100svh - 238px), 500px);
            min-height: 0;
            margin-bottom: 8px;
            background:
                linear-gradient(145deg, rgba(5, 11, 22, 0.72), rgba(1, 3, 6, 0.76)),
                radial-gradient(circle at 82% 0%, rgba(0, 243, 255, 0.24), transparent 42%);
            border: 1px solid rgba(0, 243, 255, 0.32);
        }

        .auronix-chat-header,
        .auronix-chat-composer {
            background: rgba(3, 8, 15, 0.42);
        }

        .auronix-chat-messages {
            background:
                linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.28)),
                radial-gradient(circle at 100% 18%, rgba(0, 243, 255, 0.08), transparent 35%);
        }

        .auronix-chat-toggle {
            width: 75px;
            height: 95px;
        }

        .auronix-bot-stage {
            inset: 0 0 4px;
        }

        .auronix-bot-shadow {
            bottom: 10px;
            transform: translateZ(-15px);
        }

        .auronix-chat-badge {
            top: 4px;
            right: -3px;
            min-width: 26px;
            height: 18px;
            font-size: 8px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 230, 255, 0.4);
        }

        .auronix-chat-nudge {
            right: 60px;
            bottom: 34px;
            height: 26px;
            padding: 0 8px;
            font-size: 8px;
        }

        .auronix-chat-messages {
            padding: 13px;
        }

        .auronix-chat-guide-actions {
            gap: 6px;
        }

        .auronix-chat-guide-choice,
        .auronix-chat-guide-next {
            min-height: 34px;
            padding: 7px 10px;
        }
    }

    @media (min-width: 641px) and (max-width: 767px) {
        .auronix-chat-root {
            bottom: calc(20px + env(safe-area-inset-bottom));
            z-index: 68;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .auronix-bot-stage,
        .auronix-bot-glow,
        .auronix-bot-aura,
        .auronix-bot-shadow,
        .auronix-bot-shine,
        .auronix-bot-scan::before,
        .auronix-bot-eye,
        .auronix-bot-led,
        .auronix-bot-orbit,
        .auronix-chat-nudge,
        .auronix-chat-nudge::after,
        .auronix-typing-dots span {
            animation: none;
        }

        .auronix-chat-window,
        .auronix-bot-image {
            transition: none;
        }
    }
