.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-consent-banner.show {
    transform: translateY(0);
}
.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.cookie-banner-icon { font-size: 1.5rem; }
.cookie-banner-text { flex: 1; min-width: 200px; color: #94a3b8; font-size: 0.875rem; }
.cookie-banner-text a { color: #3b82f6; }
.cookie-banner-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner-actions {
        justify-content: center;
        width: 100%;
    }
}
