#scb-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--scb-bg, #1a1a1a);
    color: var(--scb-text, #ffffff);
    padding: 16px 24px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-sizing: border-box;
}

#scb-banner.scb-visible {
    transform: translateY(0);
}

.scb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.scb-text {
    flex: 1;
    min-width: 260px;
}

.scb-text h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: inherit;
}

.scb-text p {
    margin: 0;
    opacity: 0.9;
}

.scb-text a {
    color: inherit;
    text-decoration: underline;
    margin-left: 4px;
}

.scb-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.scb-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: opacity 0.2s;
}

.scb-btn:hover {
    opacity: 0.85;
}

.scb-btn:focus-visible {
    outline: 2px solid var(--scb-text, #ffffff);
    outline-offset: 2px;
}

.scb-btn-accept {
    background: var(--scb-accept-bg, #2271b1);
    color: var(--scb-accept-text, #ffffff);
}

.scb-btn-reject {
    background: var(--scb-reject-bg, #555555);
    color: var(--scb-reject-text, #ffffff);
}

@media (max-width: 600px) {
    #scb-banner {
        padding: 16px;
    }

    .scb-buttons {
        width: 100%;
    }

    .scb-btn {
        flex: 1;
        text-align: center;
    }
}
