.glass-effect,
.nav-glass {
    background: rgba(20, 83, 45, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 243, 208, 0.1);
}

.avatar-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(167, 243, 208, 0.15);
    border: 2px solid rgba(167, 243, 208, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: border-color 0.3s;
}

.avatar-circle:hover {
    border-color: #a7f3d0;
}

.avatar-initials {
    font-size: 12px;
    font-weight: 700;
    color: #a7f3d0;
    line-height: 1;
}

.logo-img {
    height: 85px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

.lokup-fab {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 62px;
    height: 62px;
    border-radius: 9999px;
    background: #052e16;
    border: 2px solid #a7f3d0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}

.lokup-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.lokup-fab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9999px;
}

#lokup-window {
    position: fixed;
    right: 28px;
    bottom: 108px;
    width: 420px;
    background: #0f1f14;
    border-radius: 20px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(167, 243, 208, 0.15);
    z-index: 9998;
}

#lokup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #052e16;
    border-bottom: 1px solid rgba(167, 243, 208, 0.1);
}

#lokup-header .loup-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

#lokup-header .loup-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #a7f3d0;
}

#lokup-header .loup-name {
    font-weight: 700;
    font-size: 15px;
    color: #a7f3d0;
}

#lokup-header .loup-status {
    font-size: 11px;
    color: #6ee7b7;
    margin-top: 2px;
}

#lokup-header .close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #a7f3d0;
    font-size: 20px;
    line-height: 1;
    opacity: 0.6;
    transition: opacity .2s;
    padding: 4px;
}

#lokup-header .close-btn:hover {
    opacity: 1;
}

#lokup-messages {
    padding: 16px;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #0f1f14;
}

#lokup-messages::-webkit-scrollbar {
    width: 4px;
}

#lokup-messages::-webkit-scrollbar-track {
    background: transparent;
}

#lokup-messages::-webkit-scrollbar-thumb {
    background: rgba(167, 243, 208, 0.2);
    border-radius: 4px;
}

.lokup-bot {
    background: #1a3a24;
    border: 1px solid rgba(167, 243, 208, 0.1);
    color: #d1fae5;
    padding: 12px 16px;
    border-radius: 16px 16px 16px 4px;
    line-height: 1.6;
    font-size: 13.5px;
    max-width: 88%;
}

.lokup-user {
    background: #a7f3d0;
    color: #052e16;
    padding: 12px 16px;
    border-radius: 16px 16px 4px 16px;
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 88%;
    align-self: flex-end;
    font-weight: 500;
}

.lokup-typing {
    background: #1a3a24;
    border: 1px solid rgba(167, 243, 208, 0.1);
    color: #6ee7b7;
    padding: 12px 16px;
    border-radius: 16px 16px 16px 4px;
    font-size: 13px;
    font-style: italic;
    max-width: 60%;
}

#lokup-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    background: #0f1f14;
    border-top: 1px solid rgba(167, 243, 208, 0.08);
}

#lokup-options button {
    background: #1a3a24;
    color: #a7f3d0;
    border: 1px solid rgba(167, 243, 208, 0.15);
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    transition: all .2s ease;
    text-align: left;
}

#lokup-options button:hover {
    background: #a7f3d0;
    color: #052e16;
    border-color: #a7f3d0;
}

#lokup-input-zone {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(167, 243, 208, 0.1);
    background: #052e16;
}

#lokup-input {
    flex: 1;
    border: 1px solid rgba(167, 243, 208, 0.2);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13.5px;
    outline: none;
    background: #0f1f14;
    color: #f0fdf4;
    transition: border-color .2s;
}

#lokup-input::placeholder {
    color: #4b7a5a;
}

#lokup-input:focus {
    border-color: #a7f3d0;
}

#lokup-send-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #a7f3d0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .1s;
    flex-shrink: 0;
}

#lokup-send-btn:hover {
    background: #6ee7b7;
    transform: scale(1.05);
}

#lokup-send-btn svg {
    width: 16px;
    height: 16px;
    stroke: #052e16;
}

.uc-nav {
    position: fixed;
    inset: 0 0 auto 0;
    height: 64px;
    z-index: 900;
    background: rgba(6, 13, 9, .9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.uc-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.uc-logo img {
    height: 40px;
    display: block;
}

.uc-menu {
    display: flex;
    align-items: center;
}

.uc-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    border-radius: 8px;
    transition: color .15s;
    white-space: nowrap;
}

.uc-link:hover {
    color: rgba(255, 255, 255, .9);
}

.uc-link.active {
    color: #fff;
}

.uc-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 1px;
    background: #a7f3d0;
    border-radius: 1px;
}

.uc-link .chev {
    width: 12px;
    height: 12px;
    opacity: .4;
    transition: transform .2s;
}

.uc-link.is-open .chev {
    transform: rotate(180deg);
    opacity: .7;
}

.uc-has-drop {
    position: relative;
}

.uc-drop {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    background: rgba(10, 20, 13, .97);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 8px;
    display: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
    backdrop-filter: blur(24px);
    z-index: 901;
}

.uc-drop.show {
    display: block;
}

.uc-drop-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    font-weight: 500;
    transition: background .12s, color .12s;
}

.uc-drop-item:hover {
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .9);
}

.uc-drop-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uc-drop-item:hover .uc-drop-icon {
    background: rgba(167, 243, 208, .1);
}

.uc-drop-label {
    font-size: 13px;
    font-weight: 500;
}

.uc-drop-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .25);
    margin-top: 1px;
}

.uc-drop-sep {
    height: 1px;
    background: rgba(255, 255, 255, .06);
    margin: 5px 0;
}

.uc-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.uc-icon-btn {
    position: relative;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(255, 255, 255, .35);
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
    transition: color .15s, background .15s;
}

.uc-icon-btn:hover {
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .05);
}

.uc-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 14px;
    height: 14px;
    background: #a7f3d0;
    color: #052e16;
    font-size: 9px;
    font-weight: 800;
    border-radius: 7px;
    padding: 0 3px;
    display: none;
    align-items: center;
    justify-content: center;
}

.uc-avatar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 12px 3px 4px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, .1);
    text-decoration: none;
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
    transition: border-color .15s, color .15s;
}

.uc-avatar:hover {
    border-color: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .9);
}

.uc-avatar-ring {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(167, 243, 208, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #a7f3d0;
}

.uc-btn-ghost {
    padding: 6px 16px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .15s, color .15s;
}

.uc-btn-ghost:hover {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}

.uc-btn-solid {
    padding: 6px 16px;
    border-radius: 99px;
    background: #fff;
    color: #0a1a0d;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s;
}

.uc-btn-solid:hover {
    background: #d1fae5;
}
