:root {
    --lalg-green: #90c322;
    --lalg-green-dark: #7ab81c;
    --lalg-soft-card: #f1f8e2;
    --lalg-soft-card-2: #f7fcee;
    --lalg-left-bg: #f4f8ef;
    --lalg-right-bg: #f7f9fc;
    --lalg-text: #6f7d8c;
    --lalg-muted: #7f8b98;
    --lalg-font: "Poppins", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#lalg-title,
.lalg-header-subtitle,
.lalg-modal__left h3,
.lalg-modal__left p,
.lalg-form-heading h3,
.lalg-form-heading p,
.lalg-field label,
.lalg-field input,
.lalg-primary-btn,
.lalg-status,
.lalg-summary-title,
.lalg-summary-body,
.lalg-chat-input-row input,
.lalg-chat-send,
.lalg-listening-pill,
.lalg-thankyou-title,
.lalg-thankyou-text,
.lalg-thankyou-countdown,
.lalg-thankyou-close {
    letter-spacing: 0.3px;
}

.lalg-float-card {
    position: relative;
    width: 300px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(144, 195, 34, 0.18);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(144, 195, 34, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-family: var(--lalg-font);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
    isolation: isolate;
}

.lalg-float-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(144, 195, 34, 0.22) 0%, rgba(255, 255, 255, 0.12) 42%, rgba(125, 179, 29, 0.08) 100%);
    pointer-events: none;
    z-index: 0;
}

.lalg-float-card > * {
    position: relative;
    z-index: 1;
}

.lalg-float-avatar-stack {
    position: relative;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
}

.lalg-float-ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid rgba(144, 195, 34, 0.5);
    animation: lalg-pulse-ring 2s ease-out infinite;
}

.lalg-float-ring--delay {
    border-color: rgba(144, 195, 34, 0.3);
    animation-delay: 0.5s;
}

.lalg-float-avatar-shell {
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(144, 195, 34, 0.5), 0 0 30px rgba(144, 195, 34, 0.25);
    animation: lalg-icon-jump 2s ease-in-out infinite;
}

.lalg-float-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lalg-float-content {
    display: grid;
    gap: 8px;
    width: 100%;
}

.lalg-float-title {
    color: #5a8a15;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lalg-float-cta {
    min-height: 36px;
    border-radius: 10px;
    background: var(--lalg-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 4px 25px rgba(144, 195, 34, 0.35);
    letter-spacing: 0.3px;
}

.lalg-float-icon {
    font-size: 14px;
    line-height: 1;
}

.lalg-floating-btn {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    z-index: 9998;
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lalg-float-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(14px) scale(0.98);
}

.lalg-float-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.lalg-float-desktop {
    display: none;
}

.lalg-float-desktop .lalg-float-card:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(144, 195, 34, 0.18), 0 6px 18px rgba(0, 0, 0, 0.06);
}

.lalg-float-ambient {
    position: absolute;
    inset: -40px;
    border-radius: 999px;
    background: radial-gradient(ellipse at center, rgba(144, 195, 34, 0.25) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    animation: lalg-ambient-pulse 4s ease-in-out infinite;
}

.lalg-float-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #90c322;
    box-shadow: 0 0 8px rgba(144, 195, 34, 1);
    animation: lalg-particle-float 3s ease-in-out infinite;
}

.lalg-float-particle--top {
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.lalg-float-particle--right {
    bottom: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    animation-delay: 1s;
    box-shadow: 0 0 6px rgba(144, 195, 34, 0.8);
}

.lalg-float-mobile {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #90c322 0%, #7db31d 100%);
    box-shadow: 0 4px 20px rgba(144, 195, 34, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.lalg-float-mobile-ring {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: lalg-pulse-ring 2s ease-out infinite;
}

.lalg-float-mobile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lalg-modal {
    position: fixed;
    inset: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 99999;
    font-family: var(--lalg-font);
}

.lalg-modal[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.lalg-modal.is-closing {
    opacity: 0;
    pointer-events: none;
}

.lalg-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(210, 220, 200, 0.6);
    backdrop-filter: blur(6px);
}

.lalg-modal__panel {
    position: relative;
    z-index: 2;
    width: min(920px, calc(100vw - 24px));
    margin: min(15vh, 150px) auto 0;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(144, 195, 34, 0.16);
    animation: lalg-fade-in 0.4s ease;
    transform: scale(1);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.lalg-modal.is-closing .lalg-modal__panel {
    transform: scale(0.98);
    box-shadow: 0 18px 40px rgba(144, 195, 34, 0.12);
}

.lalg-modal__header {
    background: var(--lalg-green);
    color: #fff;
    display: grid;
    grid-template-columns: 58px 1fr 58px;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    margin: 0;
    border-radius: 16px 16px 0 0;
}

.lalg-header-badge,
.lalg-modal__close {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lalg-header-badge {
    font-size: 20px;
}

#lalg-title {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: left;
}

.lalg-header-subtitle {
    margin: 4px 0 0;
    color: #f2ffe0;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    text-align: left;
}

button.lalg-modal__close {
    width: 36px;
    height: 36px;
}

.lalg-modal__close {
    border: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    margin-top: 0;
    padding: 0;
}

.lalg-modal__close:hover {
    background: #fff !important;
}

.lalg-modal__body {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 420px;
    align-items: center;
}

.lalg-modal__left {
    background: var(--lalg-left-bg);
    text-align: center;
    padding: 28px 22px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lalg-modal-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 7px #fff, 0 12px 20px rgba(144, 195, 34, 0.14);
}

.lalg-modal__left h3 {
    margin: 20px 0 8px;
    color: #6a7a86;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lalg-modal__left p {
    margin: 0 auto;
    max-width: 280px;
    color: var(--lalg-muted);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 500;
}

.lalg-modal__right {
    background: var(--lalg-right-bg);
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.lalg-form-heading h3 {
    margin: 0;
    color: #6a7a86;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

.lalg-form-heading p {
    margin: 6px 0 18px;
    color: var(--lalg-muted);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
}

.lalg-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.lalg-field {
    display: grid;
    gap: 6px;
}

.lalg-field label {
    color: #6d7b88;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
}

.lalg-field label span {
    color: #ef4444;
}

.lalg-field input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #dce6d2;
    border-radius: 12px;
    background: #ffffff;
    color: #7a8796;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    padding: 0 16px;
}

.lalg-field input::placeholder {
    color: #a2adba;
}

.lalg-primary-btn {
    grid-column: 1 / -1;
    min-height: 48px;
    border: 0;
    border-radius: 12px;
    background: var(--lalg-green);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
}

.lalg-primary-btn:hover {
    background: var(--lalg-green-dark);
    color: #ffffff;
}

.lalg-session {
    border-top: 1px solid #e5e7eb;
    padding: 0;
    background: #fff;
}

.lalg-avatar-video {
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #eaf3df;
}

.lalg-session-loader {
    height: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #667482;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.lalg-session-loader__dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--lalg-green);
    box-shadow: 0 0 0 10px rgba(144, 195, 34, 0.14);
    animation: lalg-loader-pulse 1.2s ease-in-out infinite;
}

.lalg-media-track {
    display: block;
    width: 100%;
}

@keyframes lalg-loader-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.75;
    }
}

.lalg-secondary-btn {
    margin-top: 10px;
    border: 0;
    border-radius: 10px;
    padding: 10px 14px;
    background: #9ccf33;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.lalg-modal__footer {
    background: #f7f9f3;
    border-top: 1px solid #e5e7eb;
    padding: 20px 20px;
}

.lalg-session-active .lalg-modal__body,
.lalg-session-active .lalg-modal__footer {
    display: none;
}

.lalg-session-active .lalg-session {
    display: block;
}

.lalg-status {
    margin: 0;
    color: #7f8b98;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

.lalg-status.is-error {
    color: #8aa94a;
}

.lalg-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    padding: 0 18px;
}

.lalg-control-btn {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 1px solid #dce6d2;
    background: #ffffff;
    color: #7a8796;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(144, 195, 34, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lalg-control-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lalg-control-icon svg {
    width: 20px;
    height: 20px;
}

.lalg-float-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.lalg-control-btn:hover {
    background: #ffffffb5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(144, 195, 34, 0.22);
}

.lalg-control-btn.is-on {
    border-color: #90c322;
    background: #f1f8e2;
}

.lalg-summary-panel {
    position: absolute;
    right: 18px;
    left: auto;
    bottom: 110px;
    width: min(380px, calc(100vw - 36px));
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #dfe8d2;
    border-radius: 16px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
    padding: 12px 14px 12px;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lalg-summary-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lalg-summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.lalg-summary-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #5a6773;
}

.lalg-summary-icon {
    width: 18px;
    height: 18px;
    color: var(--lalg-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lalg-summary-icon svg {
    width: 18px;
    height: 18px;
}

.lalg-summary-count {
    background: #eef2f6;
    color: #5f6b76;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
}

.lalg-summary-close {
    border: 0;
    background: #f5f7f9;
    color: #6b7680;
    border-radius: 10px;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lalg-summary-close:hover {
    background: #eef2f6;
    color: #4b5563;
}

.lalg-summary-body {
    font-size: 11px;
    color: #7f8b98;
    max-height: 120px;
    overflow: auto;
    white-space: pre-line;
    margin-bottom: 8px;
}

.lalg-chat-panel {
    position: static;
    margin-top: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    width: 100%;
}

.lalg-chat-panel:not(.is-open) {
    display: none;
}

.lalg-chat-input-row {
    background: #f7fcee;
    border: 1px solid #e1efc9;
    border-radius: 12px;
    padding: 8px;
    gap: 8px;
}

.lalg-chat-input-row input {
    font-size: 12px;
    min-height: 34px;
    background: #fff;
    border: 1px solid #dce6d2;
    border-radius: 10px;
}

.lalg-chat-send {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    border: 0;
    background: var(--lalg-green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0;
}

.lalg-control-btn.is-active {
    border-color: #5b7f16;
    background: #e6f2c7;
    color: #3f5f0f;
}

.lalg-control-btn.is-active svg {
    color: #3f5f0f;
    stroke: #3f5f0f;
}
.lalg-chat-input-row {
    display: flex;
    gap: 10px;
}

.lalg-chat-input-row input {
    flex: 1;
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid #dce6d2;
    padding: 0 12px;
    font-size: 14px;
    color: #7a8796;
    background: #fff;
}

.lalg-chat-send {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
    border: 0;
    background: var(--lalg-green);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.lalg-live-stage {
    position: relative;
    height: 520px;
}

.lalg-listening-pill {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: #5f6b76;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.lalg-listening-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lalg-green);
    display: inline-block;
}

.lalg-thankyou-active .lalg-avatar-video {
    opacity: 0;
    pointer-events: none;
}

.lalg-thankyou-active .lalg-controls,
.lalg-thankyou-active .lalg-session-actions,
.lalg-thankyou-active .lalg-summary-panel,
.lalg-thankyou-active .lalg-chat-panel {
    opacity: 0;
    pointer-events: none;
}

.lalg-session-actions {
    display: none;
}

.lalg-thankyou {
    position: absolute;
    inset: 0;
    background: rgba(247, 252, 238, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(8px);
}

.lalg-thankyou-close:hover {
    background: #90c322 !important;
    color: #fff !important;
}

@media (max-width: 980px) {
    .lalg-thankyou {
        position: absolute;
        inset: 0;
        align-items: flex-start;
        justify-content: center;
        padding: 20px 16px 16px;
        box-sizing: border-box;
        overflow: hidden;
        z-index: 5;
    }
}

.lalg-thankyou.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.lalg-thankyou-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(144, 195, 34, 0.22);
    padding: 22px 26px;
    text-align: center;
    max-width: 420px;
    border: 1px solid #e1efc9;
}

.lalg-thankyou-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(144, 195, 34, 0.12);
    color: #90c322;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.lalg-thankyou-title {
    font-size: 18px;
    font-weight: 700;
    color: #6a7a86;
    margin-bottom: 6px;
}

.lalg-thankyou-text {
    font-size: 14px;
    color: #7f8b98;
    margin-bottom: 10px;
}

.lalg-thankyou-countdown {
    font-size: 12px;
    color: #8aa0b0;
    margin-bottom: 12px;
}

.lalg-thankyou-close {
    min-height: 36px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid #e1efc9;
    background: #f7fcee;
    color: #6a7a86;
    font-weight: 600;
    cursor: pointer;
}

@keyframes lalg-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .lalg-floating-btn {
        left: 18px;
        bottom: 18px;
        transform: none;
    }
    .lalg-float-hidden {
        transform: translateY(10px);
    }
    .lalg-float-visible {
        transform: translateY(0);
        padding: 0;
    }

    .lalg-float-card {
        width: min(320px, calc(100vw - 20px));
    }
    .lalg-float-desktop {
        display: none;
    }
    .lalg-float-mobile {
        display: flex;
    }

    .lalg-modal__panel {
        width: min(520px, calc(100vw - 20px));
        margin: 60px auto 0;
        max-height: calc(100vh - 24px);
    }

    .lalg-form-heading h3 {
        display: none;
    }

    .lalg-controls {
        justify-content: center;
    }

    #lalg-summary-toggle,
    #lalg-chat-toggle {
        display: none;
    }

    #lalg-mic-toggle {
        width: 44px;
        height: 44px;
    }

    .lalg-modal__header {
        padding: 18px 14px;
        grid-template-columns: 40px 1fr 40px;
        gap: 10px;
    }

    .lalg-header-badge,
    .lalg-modal__close {
        width: 38px;
        height: 38px;
    }

    .lalg-header-badge {
        font-size: 20px;
    }

    #lalg-title {
        font-size: 15px;
    }

    .lalg-header-subtitle {
        font-size: 12px;
        margin-top: 4px;
    }

    .lalg-modal__close {
        font-size: 26px;
    }

    .lalg-modal__body {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lalg-modal__left,
    .lalg-modal__right {
        padding: 16px;
    }

    .lalg-modal__left {
        display: none;
    }

    .lalg-modal__left h3 {
        font-size: 16px;
    }

    .lalg-primary-btn {
        font-size: 14px;
    }

    .lalg-form {
        grid-template-columns: 1fr;
    }

    .lalg-live-stage {
        height: auto;
        padding-bottom: 0;
        display: block;
    }

    .lalg-thankyou-active .lalg-live-stage {
        min-height: 320px;
    }

    .lalg-avatar-video {
        height: auto;
        min-height: auto;
        background: transparent;
    }

    .lalg-controls {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 14px;
        margin: 0 auto;
        z-index: 99999;
        padding: 0;
        width: 100%;
    }

    .lalg-thankyou-active .lalg-controls {
        display: none;
    }

    .lalg-thankyou-active .lalg-avatar-video,
    .lalg-thankyou-active .lalg-listening-pill {
        display: none;
    }

    .lalg-media-track {
        height: auto;
        max-height: none;
        object-fit: cover;
    }

    .lalg-thankyou-card {
        width: calc(100% - 8px);
        max-width: 320px;
        padding: 18px 18px 16px;
        border-radius: 16px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .lalg-thankyou-title {
        font-size: 15px;
        line-height: 1.3;
    }

    .lalg-thankyou-text {
        font-size: 11px;
        line-height: 1.6;
    }

    .lalg-thankyou-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .lalg-thankyou-countdown {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .lalg-thankyou-close {
        min-height: 32px;
        font-size: 12px;
        padding: 0 14px;
    }
}

@media (min-width: 981px) {
    .lalg-float-mobile {
        display: none;
    }
    .lalg-float-desktop {
        display: block;
    }
}

@keyframes lalg-ambient-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@keyframes lalg-pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes lalg-particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-4px) scale(1.2); opacity: 1; }
}

@keyframes lalg-icon-jump {
    0%, 100% { transform: translateY(0); }
    15% { transform: translateY(-6px); }
    30% { transform: translateY(0); }
    45% { transform: translateY(-4px); }
    60% { transform: translateY(0); }
}
