#ucBar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(14px);
    box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.4);
    z-index: 9998;
    font-family: Inter, Arial, sans-serif;
}

.uc-wrap {
    max-width: 1300px;
    margin: auto;
    padding: 18px 24px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.uc-text h3 {
    color: #fff;
    margin: 0 0 4px;
    font-size: 16px;
}

.uc-text p {
    color: #bbb;
    font-size: 13px;
    max-width: 620px;
}

.uc-actions {
    display: flex;
    gap: 10px;
}

.uc-btn {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s;
}

.uc-btn.primary {
    background: #ee0000 !important;
    color: #fff;
}

.uc-btn.primary:hover {
    box-shadow: 0 4px 18px rgba(238, 0, 0, 0.45);
    transform: translateY(-1px);
}

.uc-btn.ghost {
    background: transparent;
    border: 1px solid #555;
    color: #ddd;
}

.uc-btn.dark {
    background: #2a2a2a;
    color: #fff;
}

#ucOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: none;
    align-items: flex-end;
    z-index: 9911199;
}

.uc-panel {
    width: 100%;
    background: #111;
    padding: 26px;
    border-radius: 18px 18px 0 0;
    animation: ucSlide 0.45s ease;
}

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

.uc-panel-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.uc-panel-head h3 {
    color: #fff;
    margin: 0;
}

.uc-panel-head button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.uc-cat {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.uc-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.uc-cat strong {
    color: #fff;
}

.uc-cat p {
    color: #aaa;
    font-size: 13px;
    margin: 8px 0 0 52px;
}

.uc-switch {
    position: relative;
    width: 46px;
    height: 24px;
}

.uc-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.uc-switch span {
    position: absolute;
    inset: 0;
    background: #444;
    border-radius: 50px;
}

.uc-switch span:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.uc-switch input:checked + span {
    background: #ee0000 !important;
}

.uc-switch input:checked + span:before {
    transform: translateX(22px);
}

.css-uc-policy {
    color: #a6a6ba;
}

.css-uc-tools {
    margin-left: 45px;
}

.css-uc-tools-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.css-uc-tool {
    border: 1px solid #3f3f3f;
    border-radius: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
}

.css-uc-tool-name {
    border: 1px solid #666;
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
}

.css-uc-tool-desc {
    font-size: 13px;
    line-height: 1.45;
    color: #cfcfcf;
}

.css-uc-tool-empty {
    font-size: 12px;
    color: #8f8f8f;
    font-style: italic;
}
