.cc-bar {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9990;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px 14px;
    width: 380px;
    max-width: calc(100vw - 48px);
    padding: 18px;
    background: rgba(11, 16, 26, .97);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateY(calc(100% + 24px));
    transition: transform .4s cubic-bezier(.2, .9, .3, 1);
}
.cc-bar.show { transform: translateY(0); }

.cc-ic {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    background: rgba(244, 166, 35, .14);
    border: 1px solid rgba(244, 166, 35, .3);
}
.cc-tx {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cc-tx b {
    color: #eafcff;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4;
}
.cc-tx span {
    color: #9fb2c0;
    font-size: 12.5px;
    line-height: 1.5;
}
.cc-tx a {
    color: #5fe3ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cc-tx a:hover { color: #29a3ab; }

.cc-actions {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 11px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 12.5px;
    white-space: nowrap;
    transition: transform .2s, box-shadow .2s, background .2s;
}
.cc-btn-ghost {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #dbe7ee;
}
.cc-btn-ghost:hover { background: rgba(255, 255, 255, .1); }
.cc-btn-primary {
    background: linear-gradient(120deg, #29a3ab, #2b7fff);
    color: #fff;
    box-shadow: 0 8px 24px rgba(43, 127, 255, .35);
}
.cc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(43, 127, 255, .5); }

@media (max-width: 460px) {
    .cc-bar { left: 12px; bottom: 12px; width: calc(100vw - 24px); }
    .cc-actions { flex-direction: column; align-items: stretch; }
    .cc-btn { width: 100%; }
}
