.scc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    padding: 18px 20px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.scc-banner.show {
    transform: translateY(0);
}

.scc-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.scc-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.scc-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.scc-btn {
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scc-accept {
    color: #fff;
}

.scc-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #666;
}

.scc-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
    .scc-content {
        flex-direction: column;
        text-align: center;
    }

    .scc-buttons {
        width: 100%;
        justify-content: center;
    }
}