#cscc-root {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    pointer-events: none;
}

.cscc-banner,
.cscc-manage {
    pointer-events: auto;
}

.cscc-banner {
    margin: 0;
    background: linear-gradient(180deg, rgba(13, 13, 26, 0.97) 0%, #0d0d1a 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
    padding: 18px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: flex-start;
    color: #c8c5b8;
    font-family: "Merriweather", Georgia, serif;
    animation: cscc-up .35s cubic-bezier(.22, 1, .36, 1);
}

@keyframes cscc-up {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cscc-content {
    flex: 1 1 340px;
    min-width: 240px;
}

.cscc-title {
    margin: 0 0 6px;
    color: #d4af37;
    font-family: "Cinzel", Georgia, serif;
    font-size: .98rem;
    letter-spacing: .4px;
}

.cscc-desc {
    margin: 0;
    line-height: 1.6;
    font-size: .83rem;
}

.cscc-links {
    margin-top: 8px;
    font-size: .78rem;
}

.cscc-links a {
    color: #d4af37;
    text-decoration: underline;
}

.cscc-grid {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.cscc-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 10px;
    align-items: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    padding: 10px 12px;
}

.cscc-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: #d4af37;
}

.cscc-item strong {
    display: block;
    color: #ece7d5;
    font-size: .82rem;
    margin-bottom: 2px;
}

.cscc-item span {
    color: #b5b19f;
    font-size: .74rem;
    line-height: 1.45;
}

.cscc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-self: center;
}

.cscc-btn {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: "Cinzel", Georgia, serif;
    font-size: .78rem;
    letter-spacing: .25px;
    cursor: pointer;
    white-space: nowrap;
}

.cscc-btn-primary {
    border-color: rgba(212, 175, 55, 0.55);
    background: linear-gradient(135deg, #b78a31, #d4af37);
    color: #111;
    font-weight: 700;
}

.cscc-btn-muted {
    background: transparent;
    color: #c8c5b8;
}

.cscc-btn:hover {
    opacity: .9;
}

.cscc-manage {
    position: fixed;
    right: 16px;
    bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(11, 15, 25, 0.88);
    color: #d4af37;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: .75rem;
    font-family: "Cinzel", Georgia, serif;
    letter-spacing: .3px;
    cursor: pointer;
}

@media (max-width: 760px) {
    .cscc-banner {
        flex-direction: column;
    }

    .cscc-actions {
        width: 100%;
    }

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