.cookie-banner {
    position: fixed;
    top: 24px;
    left: 96px; /* Offset for desktop sidebar (72px + 24px padding) */
    width: 380px;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    z-index: 100000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(-150%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', sans-serif;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-content p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-content a {
    color: #8b5cf6;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
}

.btn-accept {
    background: #8b5cf6;
    color: #fff;
}

.btn-accept:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

.btn-settings {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-settings:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .cookie-banner {
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 20px;
        transform: translateY(150%);
    }
    .cookie-banner.active {
        transform: translateY(0);
    }
}
