.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-card, #1a1a2e);
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    animation: slideUpConsent 0.4s ease-out;
}

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

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary, #b0b0c0);
    line-height: 1.5;
}

.cookie-consent-text a {
    color: var(--primary, #f96332);
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.4rem 1.25rem;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Light mode overrides */
[data-theme-version="light"] .cookie-consent-banner {
    background: #ffffff;
    border-top-color: #e0e0e0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme-version="light"] .cookie-consent-text p {
    color: #555;
}

/* Landing page (no data-theme-version) */
body:not([data-theme-version]) .cookie-consent-banner {
    background: #0d0d1a;
    border-top-color: rgba(255, 255, 255, 0.08);
}

/* Mobile */
@media (max-width: 576px) {
    .cookie-consent-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
}
