.cookie-banner {
    position: fixed;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    font-family: 'Space Grotesk', sans-serif;
    animation: cb-in 0.4s ease-out;
}

/* Desktop: centered pill */
@media (min-width: 521px) {
    .cookie-banner {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 32px);
        border-radius: 14px;
    }
}

/* Mobile: full-width bar at bottom */
@media (max-width: 520px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 14px 14px 0 0;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 16px 20px;
    }
}

.cookie-banner.cb-hide {
    animation: cb-out 0.3s ease-in forwards;
}

@keyframes cb-in {
    from { opacity: 0; translate: 0 20px; }
    to   { opacity: 1; translate: 0 0; }
}

@keyframes cb-out {
    from { opacity: 1; translate: 0 0; }
    to   { opacity: 0; translate: 0 20px; }
}

.cb-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

@media (min-width: 521px) {
    .cb-text { white-space: nowrap; }
}

.cb-text a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.cb-text a:hover {
    color: #ccff00;
}

.cb-accept {
    flex-shrink: 0;
    padding: 8px 20px;
    background: #ccff00;
    color: #0a0a0a;
    border: none;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cb-accept:hover {
    background: #d4ff33;
    transform: scale(1.04);
}

@media (max-width: 520px) {
    .cb-accept {
        width: 100%;
        padding: 12px;
    }
}
